Browse Source

Added more helpful dependency resolution failure message

pull/11/head 3.12.10
Anairkoen Schno 5 years ago
parent
commit
b268ba6996
2 changed files with 4 additions and 1 deletions
  1. +4
    -1
      IPA.Loader/Updating/BeatMods/Updater.cs
  2. BIN
      Refs/UnityEngine.CoreModule.dll

+ 4
- 1
IPA.Loader/Updating/BeatMods/Updater.cs View File

@ -346,7 +346,10 @@ namespace IPA.Updating.BeatMods
}
else if (!dep.Has)
{
Logger.updater.Warn($"Could not resolve dependency {dep}");
if (dep.Requirement.IsSatisfied(dep.Version))
Logger.updater.Notice($"Mod {dep.Name} running a newer version than is on BeatMods ({dep.Version})");
else
Logger.updater.Warn($"Could not resolve dependency {dep}");
}
}


BIN
Refs/UnityEngine.CoreModule.dll View File


Loading…
Cancel
Save