minor cleanups, add the preview images back

This commit is contained in:
msk
2023-07-31 14:40:48 -07:00
parent 6cc32af15d
commit 611f074b73
11 changed files with 5 additions and 12 deletions
+1 -1
View File
@@ -26,5 +26,5 @@ MonoBehaviour:
ApplyHarmonyPatches: 1
BuildItems:
- {fileID: 11400000, guid: ccaff18373cd99848b344316974e6d46, type: 2}
BuildAction: 1
BuildAction: 2
OutputProfile: C:/Users/Alex/AppData/Roaming/r2modmanPlus-local/H3VR/profiles/dev
+1 -1
View File
@@ -103,7 +103,7 @@ public static AssetBundle bundle;
}
else
{
Logger.LogInfo(String.Format("Couldn't find a TNH game. Trying again...({0}/10)", i));
Logger.LogInfo(String.Format("Couldn't find a TNH game. Trying again...({0}/10)", i+1));
yield return new WaitForEndOfFrame();
}
}
+2 -1
View File
@@ -5,8 +5,9 @@ And... wait, which hold are you on again?
**This mod adds quality of life improvements to the *Take and Hold* experience that help with these questions, and then some.**
## Features
* Health counter toggle
* Better health counter visibility
* Health counter fade when aiming around it
* Health counter fade/hide when aiming around it
* Token, hold, and wave counter on radar hand
* Player count for online leaderboards; see how you stack up!
* Disabled if [*TakeAndHoldTweaker*](https://h3vr.thunderstore.io/package/devyndamonster/TakeAndHoldTweaker/) is installed
-8
View File
@@ -10,14 +10,6 @@ namespace TNHQoLImprovements
{
public static TNH_Manager tnhManager;
public static bool InHold()
{
if (tnhManager == null)
return false;
return tnhManager.Phase == TNH_Phase.Hold;
}
void Start()
{
tnhManager = FindObjectOfType<TNH_Manager>();