From 27ef2fcf265f3b2b4b38de5f3f53fdee7f6a8062 Mon Sep 17 00:00:00 2001 From: Grantapher Date: Tue, 27 Aug 2024 17:18:07 -0700 Subject: [PATCH] Remove code usage of "temporary" --- INSTALL.md | 2 +- ValheimPlus/GameClasses/FejdStartup.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 092d68e4..0879bfc0 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -54,7 +54,7 @@ In the current mod release, you should have the following versions: * All the GitHub releases come with this version bundled. * Thunderstore supports having this dependency and installing it for you via a mod manager. * ValheimPlus version `0.9.14.0` - * `(Grantapher Temporary)` will be appended to the title screen (not the log) to signify that it is not the official mod. + * `(Grantapher)` will be appended to the title screen (not the log) to signify that it is not the official mod. For more info on compatibility of various V+ and Valheim versions, check out [COMPATIBILITY.md](COMPATIBILITY.md). diff --git a/ValheimPlus/GameClasses/FejdStartup.cs b/ValheimPlus/GameClasses/FejdStartup.cs index 71052935..e7bc047b 100644 --- a/ValheimPlus/GameClasses/FejdStartup.cs +++ b/ValheimPlus/GameClasses/FejdStartup.cs @@ -42,7 +42,7 @@ private static void Postfix(ref FejdStartup __instance) // version text for bottom right of startup __instance.m_versionLabel.fontSize = 14; __instance.m_versionLabel.GetComponent().sizeDelta = new Vector2(900, 30); - __instance.m_versionLabel.text += "\nValheimPlus " + ValheimPlusPlugin.FullVersion + " (Grantapher Temporary)"; + __instance.m_versionLabel.text += "\nValheimPlus " + ValheimPlusPlugin.FullVersion + " (Grantapher)"; ValheimPlusPlugin.Logger.LogInfo($"Version text: \"{__instance.m_versionLabel.text}\"".Replace("\n", ", ")); }