summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework
diff options
context:
space:
mode:
authorIshan Jalan <44338423+strobel1ght@users.noreply.github.com>2022-07-02 08:42:35 +0530
committerIshan Jalan <44338423+strobel1ght@users.noreply.github.com>2022-07-02 08:42:35 +0530
commitd717e246b67bd1b019dab26562be1dfdc8edc73a (patch)
tree7d79d22a5017a077ee1ab2edad17cc40ff621cf7 /src/SMAPI/Framework
parentbd88727948fc8066ec7d788ff4647b4c78168b3d (diff)
downloadSMAPI-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.cs2
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.");