From db121bffa589bc4d08d7730f4accff4bef7807cd Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Sun, 5 Jan 2025 15:32:36 +0200 Subject: [PATCH] feat(maze): increase maze radius with new levels #17 --- src/floor/systems/spawn.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/floor/systems/spawn.rs b/src/floor/systems/spawn.rs index 1712c24..445a12f 100644 --- a/src/floor/systems/spawn.rs +++ b/src/floor/systems/spawn.rs @@ -33,6 +33,7 @@ pub(super) fn spawn_floor( floor: target_floor, config: MazeConfig { start_pos: config.end_pos, + radius: config.radius + 2, ..default() }, });