diff --git a/core/src/mindustry/game/Teams.java b/core/src/mindustry/game/Teams.java index 7710f599a4..290f40bb26 100644 --- a/core/src/mindustry/game/Teams.java +++ b/core/src/mindustry/game/Teams.java @@ -294,7 +294,11 @@ public class Teams{ //convert all team tiles to neutral, randomly killing them for(var b : builds){ - scheduleDerelict(b); + if(b instanceof CoreBuild){ + b.kill(); + }else{ + scheduleDerelict(b); + } } //kill all units randomly