From cab20173c2b7cfd70200707f307b5a97b9e07762 Mon Sep 17 00:00:00 2001 From: Anuken Date: Mon, 22 Dec 2025 10:22:40 -0500 Subject: [PATCH] Fixed #11479 --- core/src/mindustry/game/SectorInfo.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/src/mindustry/game/SectorInfo.java b/core/src/mindustry/game/SectorInfo.java index ee733923d1..c38421401c 100644 --- a/core/src/mindustry/game/SectorInfo.java +++ b/core/src/mindustry/game/SectorInfo.java @@ -208,7 +208,10 @@ public class SectorInfo{ this.items.set(content.item(i), items.get(i)); } - spawnPosition = entity.pos(); + //don't change the spawn position after the sector spawn is set by the generator once + if(spawnPosition == 0){ + spawnPosition = entity.pos(); + } } waveSpacing = state.rules.waveSpacing;