From bf6cb27b881f32bb9b603f3952e1730a946846ae Mon Sep 17 00:00:00 2001 From: Sarasayed0118 <162738632+Sarasayed0118@users.noreply.github.com> Date: Sun, 7 Apr 2024 05:14:58 +0530 Subject: [PATCH] Update handlechat.py --- dist/ba_root/mods/chatHandle/handlechat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/ba_root/mods/chatHandle/handlechat.py b/dist/ba_root/mods/chatHandle/handlechat.py index c2cd5b7..5ce9292 100644 --- a/dist/ba_root/mods/chatHandle/handlechat.py +++ b/dist/ba_root/mods/chatHandle/handlechat.py @@ -70,7 +70,7 @@ def filter_chat_message(msg, client_id): return Main.QuickAccess(msg, client_id) elif msg.startswith(".") and settings["allowInGameChat"]: return Main.QuickAccess(msg, client_id) - elif msg.startswith("-dm") and settings["allowInGameDm"]: + elif msg.startswith("/dm") and settings["allowInGameDm"]: return Main.QuickAccess(msg, client_id) return msg