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