From f81069f6586f64110d364f0a3960772b0dcf35c3 Mon Sep 17 00:00:00 2001 From: msk <15199219+muskit@users.noreply.github.com> Date: Mon, 14 Feb 2022 13:02:43 -0800 Subject: [PATCH] quick fixup --- Assets/MeatKit/BuildProfile.asset | 4 ++-- Assets/README.md | 4 ++++ Assets/_Scripts/LeaderboardPlayerCount.cs | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Assets/MeatKit/BuildProfile.asset b/Assets/MeatKit/BuildProfile.asset index 2bc67bf..c157441 100644 --- a/Assets/MeatKit/BuildProfile.asset +++ b/Assets/MeatKit/BuildProfile.asset @@ -13,14 +13,14 @@ MonoBehaviour: m_EditorClassIdentifier: PackageName: TNH_Quality_of_Life_Improvements Author: muskit - Version: 1.2.0 + Version: 1.2.1 Icon: {fileID: 2800000, guid: 785b7946398f5314b95bf593d2d77d67, type: 3} ReadMe: {fileID: 102900000, guid: ab1d6dea017447a48ac348db588a6f35, type: 3} WebsiteURL: https://github.com/muskit/TNH-Quality-of-Life-Improvements Description: Quality of life improvements to the Take and Hold experience. AdditionalDependencies: - BepInEx-BepInExPack_H3VR-5.4.1700 - StripNamespaces: 1 + StripNamespaces: 0 AdditionalNamespaces: - TNHQoLImprovements BuildItems: diff --git a/Assets/README.md b/Assets/README.md index df70eb7..c31a901 100644 --- a/Assets/README.md +++ b/Assets/README.md @@ -6,6 +6,7 @@ And... wait, which hold are you on again? ## Features * Better health counter visibility +* Health counter fade when aiming around it * Token, hold, and wave counter on radar hand * Player count for online leaderboards; see how you stack up! * Won't work with [*TakeAndHoldTweaker*](https://h3vr.thunderstore.io/package/devyndamonster/TakeAndHoldTweaker/) installed @@ -20,6 +21,9 @@ Toggle and customize these features in your mod manager's *Config editor*. For any issues/ideas, please create an issue at the GitHub repository (linked on Thunderstore page). ## Changelog +1.2.1 +* Changed leaderboard player count message for unavailability with TNHTweaker + **1.2.0** * HP counter text can now be hidden completely * Added HP counter fading when pointing a firearm towards it, allowing better visiblity diff --git a/Assets/_Scripts/LeaderboardPlayerCount.cs b/Assets/_Scripts/LeaderboardPlayerCount.cs index dce7e3f..9e94475 100644 --- a/Assets/_Scripts/LeaderboardPlayerCount.cs +++ b/Assets/_Scripts/LeaderboardPlayerCount.cs @@ -33,7 +33,7 @@ namespace TNHQoLImprovements if (Array.Exists(loadedAssemblies, x => x.GetName().Name == "TakeAndHoldTweaker")) { tnhTweakerInstalled = true; - this.gObjLoading.transform.GetChild(0).GetComponent().text = "Online player count is incompatible with TNHTweaker."; + this.gObjLoading.transform.GetChild(0).GetComponent().text = "Online leaderboards player count unavailable for TNHTweaker."; this.gObjLoading.SetActive(true); return; }