From 232dd880ccd31f20e50cda7ccec8491e9d520a58 Mon Sep 17 00:00:00 2001 From: maxsupermanhd Date: Tue, 1 Oct 2024 19:10:42 +0300 Subject: [PATCH] change votekick reply to bcast --- messageProcessor.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/messageProcessor.go b/messageProcessor.go index 77c96b0..b603f3e 100644 --- a/messageProcessor.go +++ b/messageProcessor.go @@ -415,7 +415,7 @@ func messageHandlerProcessChat(inst *instance, msg string) bool { instWriteFmt(inst, `chat direct %s %s`, msgb64pubkey, "All Autohoster's games are available at the website: https://wz2100-autohost.net/games (with detailed dtatistics, charts and replay)") } if msgtype == "WZCHATCMD" && (strings.HasPrefix(string(msgcontent), "/votekick")) { - instWriteFmt(inst, `chat direct %s %s`, msgb64pubkey, "If you would like to become a part of Autohoster moderation team, feel free to contact us: https://wz2100-autohost.net/about#contact") + instWriteFmt(inst, `chat bcast %s`, "If you would like to become a part of Autohoster moderation team, feel free to contact us: https://wz2100-autohost.net/about#contact") } return false }