Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Kapu1178 committed Aug 28, 2024
1 parent 73bb090 commit 142adc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mob/dead/observer/observer.dm
Original file line number Diff line number Diff line change
Expand Up @@ -470,10 +470,10 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp
to_chat(usr, span_warning("Not when you're not dead!"))
return
var/list/filtered = list()
for(var/V in GLOB.sortedAreas)
var/area/A = V
for(var/area/A in get_sorted_areas())
if(!(A.area_flags & HIDDEN_AREA))
filtered += A

var/area/thearea = tgui_input_list(usr, "Area to jump to", "BOOYEA", filtered)

if(isnull(thearea))
Expand Down

0 comments on commit 142adc3

Please sign in to comment.