diff options
author | Ishan Jalan <44338423+strobel1ght@users.noreply.github.com> | 2022-07-02 08:42:35 +0530 |
---|---|---|
committer | Ishan Jalan <44338423+strobel1ght@users.noreply.github.com> | 2022-07-02 08:42:35 +0530 |
commit | d717e246b67bd1b019dab26562be1dfdc8edc73a (patch) | |
tree | 7d79d22a5017a077ee1ab2edad17cc40ff621cf7 /src/SMAPI/Framework | |
parent | bd88727948fc8066ec7d788ff4647b4c78168b3d (diff) | |
download | SMAPI-d717e246b67bd1b019dab26562be1dfdc8edc73a.tar.gz SMAPI-d717e246b67bd1b019dab26562be1dfdc8edc73a.tar.bz2 SMAPI-d717e246b67bd1b019dab26562be1dfdc8edc73a.zip |
Current version in mod check
Added "(You have x.x.x)" to the mod update check.
Diffstat (limited to 'src/SMAPI/Framework')
-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..283755d6 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."); |