mirror of
https://github.com/geode-sdk/geode.git
synced 2025-04-04 09:11:31 -04:00
revert the dependency stuff
This commit is contained in:
parent
00b90e2d98
commit
94d03ed630
2 changed files with 4 additions and 14 deletions
loader/src/loader
|
@ -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;
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue