about summary refs log tree commit diff
path: root/src/game/client/components/chat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/components/chat.cpp')
-rw-r--r--src/game/client/components/chat.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/client/components/chat.cpp b/src/game/client/components/chat.cpp
index e58814cb..2bd4511d 100644
--- a/src/game/client/components/chat.cpp
+++ b/src/game/client/components/chat.cpp
@@ -41,9 +41,9 @@ void CHAT::con_chat(void *result, void *user_data)
 
 void CHAT::on_console_init()
 {
-	MACRO_REGISTER_COMMAND("say", "r", con_say, this);
-	MACRO_REGISTER_COMMAND("say_team", "r", con_sayteam, this);
-	MACRO_REGISTER_COMMAND("chat", "s", con_chat, this);
+	MACRO_REGISTER_COMMAND("say", "r", CFGFLAG_CLIENT, con_say, this);
+	MACRO_REGISTER_COMMAND("say_team", "r", CFGFLAG_CLIENT, con_sayteam, this);
+	MACRO_REGISTER_COMMAND("chat", "s", CFGFLAG_CLIENT, con_chat, this);
 }
 
 bool CHAT::on_input(INPUT_EVENT e)