make bases smaller

This commit is contained in:
2025-11-18 22:12:46 +01:00
parent ef257f43e6
commit d6b2a93eac

View File

@@ -42,8 +42,8 @@ fn startup(mut commands: Commands, asset_server: Res<AssetServer>) {
} }
} }
for x in 0..5 { for x in 0..3 {
for y in 10..15 { for y in 11..14 {
if x < MAP_SIZE.x && y < MAP_SIZE.y { if x < MAP_SIZE.x && y < MAP_SIZE.y {
let tile_pos = TilePos { x, y }; let tile_pos = TilePos { x, y };
let tile_entity = commands let tile_entity = commands
@@ -58,8 +58,8 @@ fn startup(mut commands: Commands, asset_server: Res<AssetServer>) {
} }
} }
for x in 45..50 { for x in 47..50 {
for y in 10..15 { for y in 11..14 {
if x < MAP_SIZE.x && y < MAP_SIZE.y { if x < MAP_SIZE.x && y < MAP_SIZE.y {
let tile_pos = TilePos { x, y }; let tile_pos = TilePos { x, y };
let tile_entity = commands let tile_entity = commands