Merge pull request #16124 from AffectedArc07/fixes-space-pipe-memes

Fixes bad inits on space tiles
This commit is contained in:
Fox McCloud
2021-06-04 15:31:29 -04:00
committed by GitHub
+1 -1
View File
@@ -179,7 +179,7 @@
// override for space turfs, since they should never hide anything
/turf/space/levelupdate()
for(var/obj/O in src)
if(O.level == 1)
if(O.level == 1 && O.initialized) // Only do this if the object has initialized
O.hide(FALSE)
// Removes all signs of lattice on the pos of the turf -Donkieyo