Fix some runtimes (#2755)

This commit is contained in:
skull132
2017-06-18 13:48:24 +03:00
committed by GitHub
parent 521705dc62
commit 324dba97dc
5 changed files with 13 additions and 6 deletions
+5 -1
View File
@@ -114,7 +114,11 @@
*/
/turf/simulated/open/proc/update()
below = GetBelow(src)
below.above = src
// Edge case for when an open turf is above space on the lowest level.
if (below)
below.above = src
levelupdate()
for (var/atom/movable/A in src)
ADD_FALLING_ATOM(A)