Skip to content

Commit

Permalink
Added more helpful dependency resolution failure message
Browse files Browse the repository at this point in the history
  • Loading branch information
nike4613 committed Apr 11, 2019
1 parent a0f70d6 commit b268ba6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion IPA.Loader/Updating/BeatMods/Updater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,10 @@ private void DependendyResolveFinalPass(Ref<List<DependencyObject>> list)
}
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}");
}
}

Expand Down
Binary file modified Refs/UnityEngine.CoreModule.dll
Binary file not shown.

0 comments on commit b268ba6

Please sign in to comment.