From d513af6a42fb219880e95d18efb9612af39822f1 Mon Sep 17 00:00:00 2001 From: Marcel Herd Date: Wed, 26 Jul 2017 20:43:26 +0200 Subject: [PATCH] Removed default bind for home key (kill) Kill is already bound to K by default, binding it on home as well doesn't really have any purpose. (?) Furthermore, the home key is right next to page up which is bound to toggling entities. It is very easy to accidentally hit home instead of page up, which is highly frustrating.. therefore I suggest removing this duplicate binding. --- src/game/client/components/binds.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/game/client/components/binds.cpp b/src/game/client/components/binds.cpp index 129131065..09f537e68 100644 --- a/src/game/client/components/binds.cpp +++ b/src/game/client/components/binds.cpp @@ -319,7 +319,6 @@ void CBinds::SetDDRaceBinds(bool FreeOnly) Bind(KEY_KP_PLUS, "zoom+", FreeOnly); Bind(KEY_KP_MINUS, "zoom-", FreeOnly); Bind(KEY_KP_MULTIPLY, "zoom", FreeOnly); - Bind(KEY_HOME, "kill", FreeOnly); Bind(KEY_PAUSE, "say /pause", FreeOnly); Bind(KEY_UP, "+jump", FreeOnly); Bind(KEY_LEFT, "+left", FreeOnly);