Fixes templates/ruins not updating area list

This commit is contained in:
CitadelStationBot
2017-04-27 17:02:33 -05:00
parent 1334608d23
commit a0c1f979dc
7 changed files with 21 additions and 8 deletions
+7 -3
View File
@@ -355,9 +355,13 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
if(!isobserver(usr))
to_chat(usr, "Not when you're not dead!")
return
var/A
A = input("Area to jump to", "BOOYEA", A) as null|anything in GLOB.sortedAreas
var/area/thearea = A
var/list/filtered = list()
for(var/V in GLOB.sortedAreas)
var/area/A = V
if(!A.hidden)
filtered += A
var/area/thearea = input("Area to jump to", "BOOYEA") as null|anything in filtered
if(!thearea)
return