Skip to content

Commit

Permalink
Code drop
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew McWatters authored and Andrew McWatters committed Oct 7, 2017
1 parent abc0977 commit f71a6a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/shared/entities/player.lua
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ concommand( "+right", "Start moving player right", function( _, player )
end, { "game" } )

concommand( "-right", "Stop moving player right", function( _, player )
localplayer._buttons = bit.band( localplayer._buttons, bit.bnot( _E.IN_RIGHT ) )
player._buttons = bit.band( player._buttons, bit.bnot( _E.IN_RIGHT ) )
end, { "game" } )


Expand Down

0 comments on commit f71a6a7

Please sign in to comment.