Skip to content

Commit

Permalink
rename say2
Browse files Browse the repository at this point in the history
  • Loading branch information
Govorunb committed May 18, 2024
1 parent 17a398f commit 4c3baa6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions SCHIZO/ConsoleCommands/ConsoleCommands.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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] <message>";
if (args is []) return "hint [duration] <message>";
string message;
if (float.TryParse(args[0], out float duration))
{
Expand Down

0 comments on commit 4c3baa6

Please sign in to comment.