Skip to content

Commit

Permalink
Merge pull request #684 from qsb-dev/dev
Browse files Browse the repository at this point in the history
1.1.1
  • Loading branch information
JohnCorby authored Apr 25, 2024
2 parents d37787b + 95f6e20 commit 875d744
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions QSB/QSBCore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
2 changes: 1 addition & 1 deletion QSB/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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" ],
Expand Down

0 comments on commit 875d744

Please sign in to comment.