From bd811ee783b9b127cf494a6c557f0d1ab8b9cba2 Mon Sep 17 00:00:00 2001 From: Xevion Date: Fri, 15 Aug 2025 12:30:29 -0500 Subject: [PATCH] fix: initial next direction for pacman (mitigation) --- src/game/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/game/mod.rs b/src/game/mod.rs index 8e2867e..bff78bd 100644 --- a/src/game/mod.rs +++ b/src/game/mod.rs @@ -135,9 +135,9 @@ impl Game { player: PlayerControlled, position: Position::AtNode(pacman_start_node), velocity: Velocity { - direction: Direction::Up, - next_direction: None, - speed: 1.125, + direction: Direction::Left, + next_direction: Some((Direction::Left, 90)), + speed: 1.15, }, sprite: Renderable { sprite: SpriteAtlas::get_tile(&atlas, "pacman/full.png")