mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 16:07:52 -05:00
minor fix to mod incompatibilities
This commit is contained in:
parent
adfc942fa0
commit
a121b8a37c
1 changed files with 1 additions and 1 deletions
|
@ -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: {
|
||||
|
|
Loading…
Reference in a new issue