clean up jumpToNullSpace

This commit is contained in:
ninjanomnom
2017-07-19 08:00:30 -04:00
parent c8e874073b
commit c7cf39cf29
+1 -6
View File
@@ -401,18 +401,13 @@
if(!underlying_area)
underlying_area = new underlying_area_type(null)
var/i
for(i in 1 to old_turfs.len)
for(var/i in 1 to old_turfs.len)
var/turf/oldT = old_turfs[i]
if(!oldT)
continue
var/area/old_area = oldT.loc
underlying_area.contents += oldT
oldT.change_area(old_area, underlying_area)
for(i in 1 to old_turfs.len)
var/turf/oldT = old_turfs[i]
if(!oldT)
continue
oldT.empty(turf_type, baseturf_type)
qdel(src, force=TRUE)