From b792d332751dc5af6d729e111394186c01d6641f Mon Sep 17 00:00:00 2001 From: Mario Date: Sat, 17 Mar 2018 23:19:40 +1000 Subject: [PATCH] Fix attacking --- qcsrc/server/client.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/server/client.qc b/qcsrc/server/client.qc index 285470be9..317713b4f 100644 --- a/qcsrc/server/client.qc +++ b/qcsrc/server/client.qc @@ -2807,8 +2807,8 @@ void PM_UpdateButtons(entity this, entity store) bool typing = this.buttonchat; - store.button0 = this.button0; - store.button1 = (typing) ? 0 : this.button1; + store.button0 = (typing) ? 0 : this.button0; + //button1?! store.button2 = (typing) ? 0 : this.button2; store.button3 = (typing) ? 0 : this.button3; store.button4 = this.button4; -- 2.39.2