diff --git a/SCHIZO/ConsoleCommands/ConsoleCommands.cs b/SCHIZO/ConsoleCommands/ConsoleCommands.cs index 4b2c3993..ab93d183 100644 --- a/SCHIZO/ConsoleCommands/ConsoleCommands.cs +++ b/SCHIZO/ConsoleCommands/ConsoleCommands.cs @@ -51,10 +51,10 @@ public static void OnConsoleCommand_say(params string[] args) ErrorMessage.AddMessage(string.Join(" ", args)); } - [ConsoleCommand("say2"), UsedImplicitly] - public static string OnConsoleCommand_say2(params string[] args) + [ConsoleCommand("hint"), UsedImplicitly] + public static string OnConsoleCommand_hint(params string[] args) { - if (args is []) return "say2 [duration] "; + if (args is []) return "hint [duration] "; string message; if (float.TryParse(args[0], out float duration)) {