Added a warning message for mods that have new updates

This commit is contained in:
Chris 2019-11-26 20:34:09 -05:00
parent 9898f620c1
commit 0af0418967
1 changed files with 2 additions and 0 deletions

View File

@ -703,6 +703,8 @@ namespace StardewModdingAPI.Framework
{ {
this.Monitor.Newline(); this.Monitor.Newline();
this.Monitor.Log($"You can update {updates.Count} mod{(updates.Count != 1 ? "s" : "")}:", LogLevel.Alert); this.Monitor.Log($"You can update {updates.Count} mod{(updates.Count != 1 ? "s" : "")}:", LogLevel.Alert);
this.Monitor.Newline();
this.Monitor.Log("WARNING: many mod updates are for Stardew Valley 1.4, which is not available on Android yet. Make sure to back up the previous mod version before attempting to install updates.", LogLevel.Alert);
foreach (var entry in updates) foreach (var entry in updates)
{ {
IModMetadata mod = entry.Item1; IModMetadata mod = entry.Item1;