Fixes Runtime in lattice.dm,41: undefined proc or verb /turf/simulated/floor/airless/update().

This commit is contained in:
Leshana
2017-05-25 15:38:01 -04:00
parent 1b0474d57a
commit c53899bea6
+1 -1
View File
@@ -37,7 +37,7 @@
if(istype(loc, /turf/simulated/open))
var/turf/simulated/open/O = loc
spawn(1)
if(O) // If we built a new floor with the lattice, the open turf won't exist anymore.
if(istype(O)) // If we built a new floor with the lattice, the open turf won't exist anymore.
O.update() // This lattice may be supporting things on top of it. If it's being deleted, they need to fall down.
..()