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(); }