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); } diff --git a/QSB/manifest.json b/QSB/manifest.json index 4b922e4ac..7211c7371 100644 --- a/QSB/manifest.json +++ b/QSB/manifest.json @@ -4,7 +4,7 @@ "author": "Nebula, John, Alek, & Rai", "name": "Quantum Space Buddies", "uniqueName": "Raicuparta.QuantumSpaceBuddies", - "version": "1.1.0", + "version": "1.1.1", "owmlVersion": "2.11.1", "dependencies": [ "_nebula.MenuFramework", "JohnCorby.VanillaFix" ], "pathsToPreserve": [ "debugsettings.json" ],