Fixes bad inits on space tiles

This commit is contained in:
AffectedArc07
2021-06-02 22:35:32 +01:00
parent 65b70a878d
commit 1d7015c070
+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