diff options
author | metamuffin <metamuffin@disroot.org> | 2024-08-14 20:54:54 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-08-14 20:54:54 +0200 |
commit | e4478347776977c044b5621096c40d71b830457b (patch) | |
tree | 5e9330813df306e7cbfa7fafbd0d522fc8d5989a /pixel-client/src | |
parent | 9131f68e123c4fcd4786a7b33a7ad345d84a56d0 (diff) | |
download | hurrycurry-e4478347776977c044b5621096c40d71b830457b.tar hurrycurry-e4478347776977c044b5621096c40d71b830457b.tar.bz2 hurrycurry-e4478347776977c044b5621096c40d71b830457b.tar.zst |
pc: fix player too fast
Diffstat (limited to 'pixel-client/src')
-rw-r--r-- | pixel-client/src/game.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pixel-client/src/game.rs b/pixel-client/src/game.rs index eab45478..b253ecbe 100644 --- a/pixel-client/src/game.rs +++ b/pixel-client/src/game.rs @@ -160,7 +160,6 @@ impl Game { if let Some(player) = self.players.get_mut(&self.my_id) { player.movement.input(direction, boost); - player.movement.update(&self.walkable, dt); if send_movement { self.network |