Skip to content

Commit

Permalink
Blindly follow advice of smart people to hopefully fix bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
drzel committed Aug 13, 2018
1 parent cd01306 commit cb934c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion player.qc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit cb934c3

Please sign in to comment.