From 7716b3a27db9e42ce52698536bcdad7f2fce695c Mon Sep 17 00:00:00 2001 From: terencehill Date: Sun, 13 Jun 2021 14:22:08 +0200 Subject: [PATCH] Fix the special command not being recognized --- qcsrc/common/physics/player.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"; -- 2.39.2