Skip to content

Commit

Permalink
minor fix to mod incompatibilities
Browse files Browse the repository at this point in the history
  • Loading branch information
ninXout committed Sep 8, 2024
1 parent adfc942 commit a121b8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loader/src/loader/LoaderImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ void Loader::Impl::findProblems() {
}

for (auto const& dep : mod->getMetadata().getIncompatibilities()) {
if (!dep.mod || !dep.version.compare(dep.mod->getVersion()))
if (!dep.mod || !dep.version.compare(dep.mod->getVersion()) || !dep.mod->isEnabled())
continue;
switch(dep.importance) {
case ModMetadata::Incompatibility::Importance::Conflicting: {
Expand Down

0 comments on commit a121b8a

Please sign in to comment.