diff --git a/build/Version.props b/build/Version.props index 391a9e4ec86..56b991f7d33 100644 --- a/build/Version.props +++ b/build/Version.props @@ -3,7 +3,7 @@ - 6.4.0 + 6.4.1 5.1.0 10.2.0 7.0.0 diff --git a/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs b/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs index d53e997b256..049c217efb3 100644 --- a/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs +++ b/src/Tgstation.Server.Host/Components/Chat/ChatManager.cs @@ -839,7 +839,7 @@ ValueTask TextReply(string reply) => SendMessage( splits.RemoveAt(0); var arguments = String.Join(" ", splits); - Tuple? GetCommand() + Tuple? GetCommand(string command) { if (!builtinCommands.TryGetValue(command, out var handler)) return trackingContexts @@ -867,7 +867,7 @@ ValueTask TextReply(string reply) => SendMessage( } else { - var helpTuple = GetCommand(); + var helpTuple = GetCommand(splits[0]); if (helpTuple != default) { var (helpHandler, _) = helpTuple; @@ -881,7 +881,7 @@ ValueTask TextReply(string reply) => SendMessage( return; } - var tuple = GetCommand(); + var tuple = GetCommand(command); if (tuple == default) {