From: Mario Date: Sat, 17 Mar 2018 13:19:40 +0000 (+1000) Subject: Fix attacking X-Git-Tag: xonotic-v0.8.5~2226 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=b792d332751dc5af6d729e111394186c01d6641f;p=xonotic%2Fxonotic-data.pk3dir.git Fix attacking --- 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;