about summary refs log tree commit diff
path: root/src/game/client/components/binds.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/components/binds.cpp')
-rw-r--r--src/game/client/components/binds.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/client/components/binds.cpp b/src/game/client/components/binds.cpp
index 527b7758..a2e30eaa 100644
--- a/src/game/client/components/binds.cpp
+++ b/src/game/client/components/binds.cpp
@@ -114,10 +114,10 @@ void BINDS::set_defaults()
 void BINDS::on_console_init()
 {
 	// bindings
-	MACRO_REGISTER_COMMAND("bind", "sr", con_bind, this);
-	MACRO_REGISTER_COMMAND("unbind", "s", con_unbind, this);
-	MACRO_REGISTER_COMMAND("unbindall", "", con_unbindall, this);
-	MACRO_REGISTER_COMMAND("dump_binds", "", con_dump_binds, this);
+	MACRO_REGISTER_COMMAND("bind", "sr", CFGFLAG_CLIENT, con_bind, this);
+	MACRO_REGISTER_COMMAND("unbind", "s", CFGFLAG_CLIENT, con_unbind, this);
+	MACRO_REGISTER_COMMAND("unbindall", "", CFGFLAG_CLIENT, con_unbindall, this);
+	MACRO_REGISTER_COMMAND("dump_binds", "", CFGFLAG_CLIENT, con_dump_binds, this);
 	
 	// default bindings
 	set_defaults();