Skip to content

Commit

Permalink
fix #556
Browse files Browse the repository at this point in the history
  • Loading branch information
misternebula committed Mar 19, 2024
1 parent 0f1c8aa commit 083409c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/OWML.ModLoader/Owo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public void LoadMods()

missingDependencies.ForEach(dependency => _console.WriteLine($"Error! {modData.Manifest.UniqueName} needs {dependency}, but it's disabled/missing!", MessageType.Error));

var shouldLoad = _modVersionChecker.CheckModVersion(modData) && _modVersionChecker.CheckModGameVersion(modData, latestGameVersion);
var shouldLoad = modData.Enabled && _modVersionChecker.CheckModVersion(modData) && _modVersionChecker.CheckModGameVersion(modData, latestGameVersion);
if (!shouldLoad)
{
continue;
Expand Down

0 comments on commit 083409c

Please sign in to comment.