diff --git a/QSB/QSBCore.cs b/QSB/QSBCore.cs index 342da975d..289ef88b5 100644 --- a/QSB/QSBCore.cs +++ b/QSB/QSBCore.cs @@ -385,6 +385,11 @@ static void Init(Assembly assembly) DebugLog.DebugWrite("Running RuntimeInitializeOnLoad methods for our assemblies", MessageType.Info); foreach (var path in Directory.EnumerateFiles(Helper.Manifest.ModFolderPath, "*.dll")) { + if (Path.GetFileNameWithoutExtension(path) == "QSB-NH") + { + continue; + } + var assembly = Assembly.LoadFile(path); Init(assembly); }