diff --git a/core/src/mindustry/core/Logic.java b/core/src/mindustry/core/Logic.java index c38bec0afa..2a335c02e5 100644 --- a/core/src/mindustry/core/Logic.java +++ b/core/src/mindustry/core/Logic.java @@ -123,7 +123,7 @@ public class Logic implements ApplicationListener{ }); Events.on(SectorCaptureEvent.class, e -> { - if(!net.client() && e.sector == state.getSector()){ + if(!net.client() && e.sector == state.getSector() && e.sector.isBeingPlayed()){ for(Tile tile : world.tiles){ //convert all blocks to neutral, randomly killing them if(tile.isCenter() && tile.build != null && tile.build.team == state.rules.waveTeam){