diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2022-07-05 23:23:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-05 23:23:26 -0400 |
commit | ed1705d4d7efc99eea9456ba7f43f46447e6c96e (patch) | |
tree | be1a21959d3ddc8e41c8784cc187a9e758eabef7 /src/SMAPI/Framework/SCore.cs | |
parent | 454f3a45ba104f2495386f6fe30d8ddab6beb80e (diff) | |
parent | 543e45f9bde5929ca3c12db23f7d5b2ae0c653cd (diff) | |
download | SMAPI-ed1705d4d7efc99eea9456ba7f43f46447e6c96e.tar.gz SMAPI-ed1705d4d7efc99eea9456ba7f43f46447e6c96e.tar.bz2 SMAPI-ed1705d4d7efc99eea9456ba7f43f46447e6c96e.zip |
Merge pull request #854 from ishanjalan/develop
Current version in mod check
Diffstat (limited to 'src/SMAPI/Framework/SCore.cs')
-rw-r--r-- | src/SMAPI/Framework/SCore.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs index fdfe70fc..d0effb03 100644 --- a/src/SMAPI/Framework/SCore.cs +++ b/src/SMAPI/Framework/SCore.cs @@ -1565,7 +1565,7 @@ namespace StardewModdingAPI.Framework this.Monitor.Newline(); this.Monitor.Log($"You can update {updates.Count} mod{(updates.Count != 1 ? "s" : "")}:", LogLevel.Alert); foreach ((IModMetadata mod, ISemanticVersion newVersion, string newUrl) in updates) - this.Monitor.Log($" {mod.DisplayName} {newVersion}: {newUrl}", LogLevel.Alert); + this.Monitor.Log($" {mod.DisplayName} {newVersion}: {newUrl} (you have {mod.Manifest.Version})", LogLevel.Alert); } else this.Monitor.Log(" All mods up to date."); |