Merge pull request #3474 from VOREStation/vplk-sundry-runtimes

Sundry Runtime Fixes
This commit is contained in:
Neerti
2017-05-28 17:44:04 -04:00
committed by GitHub
3 changed files with 7 additions and 5 deletions
+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.
..()