From 7259eb48b187c4c2d42bdae9d2399c1be2b45554 Mon Sep 17 00:00:00 2001 From: splootybean Date: Sat, 16 May 2026 22:11:54 -0700 Subject: [PATCH] Uh whoops it already does it for me lol --- Plugin.cs | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Plugin.cs b/Plugin.cs index 2c957f6..07eb32a 100644 --- a/Plugin.cs +++ b/Plugin.cs @@ -27,18 +27,15 @@ namespace Radium.InputManagerPatch { Log = base.Log; - // The valid input types to print in our config - var inputTypes = string.Join(", ", Enum.GetNames(typeof(InputManager.LNEHPBFDEGG))); - VRInputDeviceType = Config.Bind( section: "Input", key: "VRInputDeviceType", defaultValue: InputManager.LNEHPBFDEGG.SteamVR_Vive, - description: $"Fixed input mode. Valid options are: {inputTypes}"); + description: $"Fixed input mode. Set it to any of the acceptable values below"); Log.LogInfo($"{MyPluginInfo.PLUGIN_GUID} loaded!"); #if DEBUG - Log.LogInfo(VRInputDeviceType.Value); + Log.LogInfo($"We are set! {VRInputDeviceType.Value}"); #endif _harmony.PatchAll(); }