prevent mod from trying to resolve multiple times

This commit is contained in:
matcool 2023-03-19 09:37:04 -03:00
parent cdba471658
commit db9ea383a3
No known key found for this signature in database
GPG key ID: BF58756086D7AB1C

View file

@ -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());