From 88652e1dc0c7e44b300767831dd421c836940d65 Mon Sep 17 00:00:00 2001 From: Matthew Date: Mon, 27 Nov 2023 15:32:52 -0500 Subject: [PATCH] chore: Change command name to show the prefix instead. --- server/channelserver/handlers_cast_binary.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/channelserver/handlers_cast_binary.go b/server/channelserver/handlers_cast_binary.go index ef9ee8798..10ac2fa7c 100644 --- a/server/channelserver/handlers_cast_binary.go +++ b/server/channelserver/handlers_cast_binary.go @@ -326,7 +326,7 @@ func parseChatCommand(s *Session, command string) { case commands["Help"].Prefix: if commands["Help"].Enabled { for _, command := range maps.Values(commands) { - sendServerChatMessage(s, fmt.Sprintf("%s: %s", command.Name, command.Description)) + sendServerChatMessage(s, fmt.Sprintf("!%s: %s", command.Prefix, command.Description)) } } else { sendDisabledCommandMessage(s, commands["Help"])