From: Mario Date: Sun, 30 Sep 2018 17:33:22 +0000 (+1000) Subject: Bind K to kill by default X-Git-Tag: xonotic-v0.8.5~1806 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0b16f04c81383566eda1afd6ac80491e7edb54d3;p=xonotic%2Fxonotic-data.pk3dir.git Bind K to kill by default --- diff --git a/binds-xonotic.cfg b/binds-xonotic.cfg index 18ee7ea28..611f5da95 100644 --- a/binds-xonotic.cfg +++ b/binds-xonotic.cfg @@ -40,6 +40,7 @@ bind MWHEELUP weapnext bind MWHEELDOWN weapprev bind r reload bind BACKSPACE dropweapon +bind k kill bind g dropweapon bind f +use bind v +button8 // drag object diff --git a/qcsrc/menu/xonotic/keybinder.qc b/qcsrc/menu/xonotic/keybinder.qc index a14406bce..f4417171f 100644 --- a/qcsrc/menu/xonotic/keybinder.qc +++ b/qcsrc/menu/xonotic/keybinder.qc @@ -103,6 +103,7 @@ void Xonotic_KeyBinds_Read() KEYBIND_DEF("+use" , _("drop key / drop flag")); KEYBIND_DEF("" , ""); KEYBIND_DEF("" , _("Misc")); + KEYBIND_DEF("kill" , _("respawn")); KEYBIND_DEF("quickmenu" , _("quick menu")); KEYBIND_DEF("menu_showsandboxtools" , _("sandbox menu")); KEYBIND_DEF("+button8" , _("drag object"));