diff --git a/ConsoleCommands.cs b/ConsoleCommands.cs index 73b7847..8a25ffd 100644 --- a/ConsoleCommands.cs +++ b/ConsoleCommands.cs @@ -13,8 +13,8 @@ namespace DiamondTimeViewer MIU.Console.Instance.Write(" gold Show once you've achieved gold time"); MIU.Console.Instance.Write(" always Always show diamond time"); MIU.Console.Instance.Write(""); - MIU.Console.Instance.Write(" enabled Enable the mod"); - MIU.Console.Instance.Write(" disabled Disable the mod entirely"); + MIU.Console.Instance.Write(" enable Enable the mod"); + MIU.Console.Instance.Write(" disable Disable the mod entirely"); MIU.Console.Instance.Write(""); MIU.Console.Instance.Write(" save Saves the current config"); MIU.Console.Instance.Write(" load Loads the config file"); @@ -45,10 +45,10 @@ namespace DiamondTimeViewer case "always": Config.Mode = DisplayMode.Always; return "mode set to: always"; - case "enabled": + case "enable": Config.Enabled = true; return "Mod enabled"; - case "disabled": + case "disable": Config.Enabled = false; return "Mod disabled"; case "save":