Merge pull request #684 from qsb-dev/dev

1.1.1
This commit is contained in:
Will Corby 2024-04-25 15:39:27 -07:00 committed by GitHub
commit 875d744912
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -385,6 +385,11 @@ public class QSBCore : ModBehaviour
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);
}

View File

@ -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" ],