From cb934c3c3d85a44aeb277aeac8fcf407204a86ef Mon Sep 17 00:00:00 2001 From: Sheldon Johnson Date: Mon, 13 Aug 2018 22:01:24 +1000 Subject: [PATCH] Blindly follow advice of smart people to hopefully fix bugs --- player.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/player.qc b/player.qc index b4d74a3d..9e8e9fbc 100644 --- a/player.qc +++ b/player.qc @@ -104,7 +104,7 @@ void () player_stand1 =[17, player_stand1] { void () player_run =[6, player_run] { self.weaponframe = 0; - if (!self.velocity_x && !self.velocity_y) { + if not(self.velocity_x && self.velocity_y) { self.walkframe = 0; player_stand1(); return;