diff --git a/IPA.Loader/Updating/BeatMods/Updater.cs b/IPA.Loader/Updating/BeatMods/Updater.cs index 0c0fb787..b7440012 100644 --- a/IPA.Loader/Updating/BeatMods/Updater.cs +++ b/IPA.Loader/Updating/BeatMods/Updater.cs @@ -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}"); } } diff --git a/Refs/UnityEngine.CoreModule.dll b/Refs/UnityEngine.CoreModule.dll index f6478af7..3c6b6316 100644 Binary files a/Refs/UnityEngine.CoreModule.dll and b/Refs/UnityEngine.CoreModule.dll differ