]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix attacking
authorMario <mario@smbclan.net>
Sat, 17 Mar 2018 13:19:40 +0000 (23:19 +1000)
committerMario <mario@smbclan.net>
Sat, 17 Mar 2018 13:19:40 +0000 (23:19 +1000)
qcsrc/server/client.qc

index 285470be942a32bb79d92b3f1ad13c9a8b6e73dc..317713b4f53528c6a120bf2f9a891749b8462df7 100644 (file)
@@ -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;