revert the dependency stuff

This commit is contained in:
altalk23 2024-01-01 20:51:29 +03:00
parent 00b90e2d98
commit 94d03ed630
2 changed files with 4 additions and 14 deletions

View file

@ -353,9 +353,6 @@ void Loader::Impl::buildModGraph() {
}
void Loader::Impl::loadModGraph(Mod* node, bool early) {
if (node->isEnabled()) {
return;
}
if (early && !node->needsEarlyLoad()) {
m_modsToLoad.push_back(node);
return;
@ -373,19 +370,12 @@ void Loader::Impl::loadModGraph(Mod* node, bool early) {
log::debug("{} {}", node->getID(), node->getVersion());
log::pushNest();
if (node->shouldLoad()) {
bool hasUnresolvedDependencies = false;
if (node->isEnabled()) {
for (auto const& dep : node->m_impl->m_dependants) {
if (dep->isEnabled())
continue;
m_modsToLoad.push_front(dep);
hasUnresolvedDependencies = true;
}
if (hasUnresolvedDependencies) {
log::debug("Has unresolved dependencies, loading later");
log::popNest();
return;
}
log::popNest();
return;
}
m_currentlyLoadingMod = node;

View file

@ -17,7 +17,7 @@ ModMetadata::Impl& ModMetadataImpl::getImpl(ModMetadata& info) {
bool ModMetadata::Dependency::isResolved() const {
return this->importance != Importance::Required ||
this->mod && this->mod->shouldLoad() && this->version.compare(this->mod->getVersion());
this->mod && this->mod->isEnabled() && this->version.compare(this->mod->getVersion());
}
bool ModMetadata::Incompatibility::isResolved() const {