From 16111ab69ee32e3b2f062d390c200d19bfbe5063 Mon Sep 17 00:00:00 2001 From: Phoenix / Hotaru Date: Sat, 6 Apr 2024 01:28:03 +0100 Subject: [PATCH] Message cleanup --- src/generate_version.go | 2 +- src/github_versionchecking.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/generate_version.go b/src/generate_version.go index d4fe9b8..7b920b1 100644 --- a/src/generate_version.go +++ b/src/generate_version.go @@ -39,5 +39,5 @@ var ircBridgeVersion = "%s" return } - fmt.Println("Version set to", version) + fmt.Println("Pinning goTES3MP's IRCBridge version to", version) } diff --git a/src/github_versionchecking.go b/src/github_versionchecking.go index cb0a901..4cbd070 100644 --- a/src/github_versionchecking.go +++ b/src/github_versionchecking.go @@ -144,10 +144,10 @@ func getStatus(firstLaunch bool, showModules bool) { _, isSafeLuaUpdate := fetchIrcBridgeVersionFromGithub() if isSafeLuaUpdate { // If Lua updates are safe - color.HiGreen("A new version of goTES3MP is available: " + Build + " -> " + UpdateVersion + ".\nYour IRC bridge version should be compatible.") + color.HiGreen("A new version of goTES3MP is available: " + Build + " -> " + UpdateVersion + ".\nYour IRC bridge version should be compatible.") } else { // If Lua updates are not safe - color.HiYellow("A new version of goTES3MP is available: " + Build + " -> " + UpdateVersion + ".\nHowever, the IRC bridge version may not be compatible.") + color.HiYellow("A new version of goTES3MP is available: " + Build + " -> " + UpdateVersion + ".\nHowever, the IRCBridge version may not be compatible.") } }