diff --git a/server/channelserver/handlers_cast_binary.go b/server/channelserver/handlers_cast_binary.go index 10ac2fa7c..816ee3307 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.Prefix, command.Description)) + sendServerChatMessage(s, fmt.Sprintf("%s%s: %s", s.server.erupeConfig.CommandPrefix, command.Prefix, command.Description)) } } else { sendDisabledCommandMessage(s, commands["Help"])