mirror of
https://github.com/geode-sdk/geode.git
synced 2025-03-01 07:53:56 -05:00
prevent mod from trying to resolve multiple times
This commit is contained in:
parent
cdba471658
commit
db9ea383a3
1 changed files with 1 additions and 1 deletions
|
@ -456,7 +456,7 @@ Result<> Mod::Impl::updateDependencies() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// load if there weren't any unresolved dependencies
|
// load if there weren't any unresolved dependencies
|
||||||
if (!hasUnresolved) {
|
if (!hasUnresolved && !m_binaryLoaded) {
|
||||||
log::debug("All dependencies for {} found", m_info.id());
|
log::debug("All dependencies for {} found", m_info.id());
|
||||||
if (m_enabled) {
|
if (m_enabled) {
|
||||||
log::debug("Resolved & loading {}", m_info.id());
|
log::debug("Resolved & loading {}", m_info.id());
|
||||||
|
|
Loading…
Reference in a new issue