Skip to content

Commit

Permalink
Remove code usage of "temporary"
Browse files Browse the repository at this point in the history
  • Loading branch information
Grantapher committed Aug 28, 2024
1 parent b3d07b8 commit 27ef2fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

Expand Down
2 changes: 1 addition & 1 deletion ValheimPlus/GameClasses/FejdStartup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<RectTransform>().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", ", "));
}
Expand Down

0 comments on commit 27ef2fc

Please sign in to comment.