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.
This commit is contained in:
Marcel Herd 2017-07-26 20:43:26 +02:00 committed by GitHub
parent adef38a574
commit d513af6a42

View file

@ -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);