# HG changeset patch # User Adam Kaminski # Date 1626533422 14400 # Sat Jul 17 10:50:22 2021 -0400 # Node ID 7ac98a4325ac4a040e8e39b25a3ec08a8df3e56d # Parent 5133dfa8de21ac9a6a2d2491559279122543cb45 Changed the default binds of some commands again. diff -r 5133dfa8de21 -r 7ac98a4325ac src/c_bind.cpp --- a/src/c_bind.cpp Sat Jul 17 10:15:20 2021 -0400 +++ b/src/c_bind.cpp Sat Jul 17 10:50:22 2021 -0400 @@ -70,7 +70,9 @@ { "]", "invnext" }, { "mwheelleft", "invprev" }, { "mwheelright", "invnext" }, - { "enter", "invuse" }, + // [AK] "invuse" is now bound to "\" and "togglemap" is bound to the enter key. + { "\\", "invuse" }, + { "enter", "togglemap" }, { "-", "sizedown" }, { "=", "sizeup" }, { "ctrl", "+crouch" }, // [AK] @@ -103,7 +105,6 @@ { "f9", "quickload" }, { "f11", "bumpgamma" }, { "f10", "menu_quit" }, - { "tab", "togglemap" }, { "pause", "pause" }, { "sysrq", "screenshot" }, // [AK] Added/changed binds for global, team, and private chat modes. @@ -114,10 +115,11 @@ { "f12", "spynext" }, { "mwheeldown", "weapnext" }, { "mwheelup", "weapprev" }, - // [AK] Added default binds for "weapswap" and "weapdrop". + // [AK] Added default binds for "weapswap", "weapdrop", and "reload". { "q", "weapswap" }, { "g", "weapdrop" }, - { "m", "togglemap" }, // [AK] + { "r", "+reload" }, + { "m", "+showmedals" }, // [BC] New buttons below for Skulltag. { "u", "taunt" }, { "pgup", "vote_yes" }, { "pgdn", "vote_no" },