mirror of
https://github.com/geode-sdk/geode.git
synced 2025-03-13 22:49:52 -04:00
fix dependency freeze in nested dependency chain
This commit is contained in:
parent
34e80c1ea8
commit
fda37905e0
1 changed files with 3 additions and 2 deletions
|
@ -680,9 +680,10 @@ void Loader::Impl::continueRefreshModGraph() {
|
|||
if (!m_modsToLoad.empty()) {
|
||||
log::debug("Loading mods");
|
||||
log::pushNest();
|
||||
this->loadModGraph(m_modsToLoad.front(), false);
|
||||
log::popNest();
|
||||
auto mod = m_modsToLoad.front();
|
||||
m_modsToLoad.pop_front();
|
||||
this->loadModGraph(mod, false);
|
||||
log::popNest();
|
||||
break;
|
||||
}
|
||||
m_loadingState = LoadingState::Problems;
|
||||
|
|
Loading…
Reference in a new issue