diff --git a/code/game/objects/structures/lattice.dm b/code/game/objects/structures/lattice.dm index 3847950e601..84f76e9546b 100644 --- a/code/game/objects/structures/lattice.dm +++ b/code/game/objects/structures/lattice.dm @@ -11,7 +11,7 @@ /obj/structure/lattice/New() ..() ///// Z-Level Stuff - if(!(istype(src.loc, /turf/space) || istype(src.loc, /turf/simulated/floor/open))) + if(!(istype(src.loc, /turf/space) || istype(src.loc, /turf/simulated/floor/open) || istype(src.loc, /turf/simulated/floor/plating/airless/asteroid) || istype(src.loc, /turf/simulated/floor/plating/asteroid))) ///// Z-Level Stuff qdel(src) for(var/obj/structure/lattice/LAT in src.loc)