Skip to content

Commit

Permalink
Revert "fix importance resolving in disabled mods"
Browse files Browse the repository at this point in the history
This reverts commit d40ba6d.
  • Loading branch information
altalk23 committed Dec 13, 2024
1 parent 89554c3 commit ded70bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loader/src/loader/ModMetadataImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ bool ModMetadata::Dependency::isResolved() const {

bool ModMetadata::Incompatibility::isResolved() const {
return this->importance != Importance::Breaking ||
(!this->mod || !this->mod->isEnabled() || !this->version.compare(this->mod->getVersion()));
(!this->mod || !this->version.compare(this->mod->getVersion()));
}

static std::string sanitizeDetailsData(std::string const& str) {
Expand Down

0 comments on commit ded70bb

Please sign in to comment.