mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-27 01:45:35 -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
|
||||
if (!hasUnresolved) {
|
||||
if (!hasUnresolved && !m_binaryLoaded) {
|
||||
log::debug("All dependencies for {} found", m_info.id());
|
||||
if (m_enabled) {
|
||||
log::debug("Resolved & loading {}", m_info.id());
|
||||
|
|
Loading…
Reference in a new issue