From: terencehill Date: Sun, 13 Jun 2021 12:22:08 +0000 (+0200) Subject: Fix the special command not being recognized X-Git-Tag: xonotic-v0.8.5~405^2~7 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=7716b3a27db9e42ce52698536bcdad7f2fce695c;p=xonotic%2Fxonotic-data.pk3dir.git Fix the special command not being recognized --- diff --git a/qcsrc/common/physics/player.qc b/qcsrc/common/physics/player.qc index 24967d1c8..2fd3f9fb5 100644 --- a/qcsrc/common/physics/player.qc +++ b/qcsrc/common/physics/player.qc @@ -531,7 +531,7 @@ bool PM_check_specialcommand(entity this, int buttons) c = "x"; else if (buttons == 1) c = "1"; - else if (buttons == 2) + else if (buttons == 4) c = " "; else if (buttons == 128) c = "s";