diff --git a/core/src/mindustry/entities/comp/BuildingComp.java b/core/src/mindustry/entities/comp/BuildingComp.java index 77defd4127..b55656f55c 100644 --- a/core/src/mindustry/entities/comp/BuildingComp.java +++ b/core/src/mindustry/entities/comp/BuildingComp.java @@ -1668,7 +1668,9 @@ abstract class BuildingComp implements Posc, Teamc, Healthc, Buildingc, Timerc, Events.fire(new BlockDestroyEvent(tile)); block.destroySound.at(tile); onDestroyed(); - tile.remove(); + if(tile != emptyTile){ + tile.remove(); + } remove(); afterDestroyed(); }