From f6cbc49ca97751ea98dda3dad8ab0c8f85fdf625 Mon Sep 17 00:00:00 2001 From: dmitry Date: Wed, 19 Jan 2022 01:11:01 +0300 Subject: [PATCH] fix: bomb plant chat section is mistakenly assigned to kill chat section (fixes #281) --- src/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.cpp b/src/config.cpp index 6c78434..c2e6b58 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -385,7 +385,7 @@ void BotConfig::loadChatConfig () { continue; } else if (line.startsWith ("[BOMBPLANT]")) { - chat = &m_chat[Chat::Kill]; + chat = &m_chat[Chat::Plant]; continue; } else if (line.startsWith ("[DEADCHAT]")) {