diff --git a/core/src/mindustry/core/Control.java b/core/src/mindustry/core/Control.java index 55a4abb2ef..c27f371b02 100644 --- a/core/src/mindustry/core/Control.java +++ b/core/src/mindustry/core/Control.java @@ -472,6 +472,10 @@ public class Control implements ApplicationListener, Loadable{ //set spawn for sector damage to use Tile spawn = world.tile(spawnPos); + if(spawn == null){ + playNewSector(origin, sector, reloader); + return; + } spawn.setBlock(sector.planet.defaultCore, state.rules.defaultTeam); //apply damage to simulate the sector being lost