From d6b2a93eacb38a89920178152b4f0c5bd96aa774 Mon Sep 17 00:00:00 2001 From: GarandPLG Date: Tue, 18 Nov 2025 22:12:46 +0100 Subject: [PATCH] make bases smaller --- src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index 4458307..54f6e36 100644 --- a/src/main.rs +++ b/src/main.rs @@ -42,8 +42,8 @@ fn startup(mut commands: Commands, asset_server: Res) { } } - for x in 0..5 { - for y in 10..15 { + for x in 0..3 { + for y in 11..14 { if x < MAP_SIZE.x && y < MAP_SIZE.y { let tile_pos = TilePos { x, y }; let tile_entity = commands @@ -58,8 +58,8 @@ fn startup(mut commands: Commands, asset_server: Res) { } } - for x in 45..50 { - for y in 10..15 { + for x in 47..50 { + for y in 11..14 { if x < MAP_SIZE.x && y < MAP_SIZE.y { let tile_pos = TilePos { x, y }; let tile_entity = commands