Skip to content

Commit

Permalink
small hotfix to get map levels (#5687)
Browse files Browse the repository at this point in the history
Co-authored-by: silicons <no@you.cat>
  • Loading branch information
silicons and silicons authored Jul 13, 2023
1 parent 64f6d33 commit 519121f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/mapping/map.dm
Original file line number Diff line number Diff line change
Expand Up @@ -349,9 +349,9 @@
// Traditional behavior
else
if (long_range && (srcz in map_levels))
return map_levels
return map_levels.Copy()
else if (srcz in station_levels)
return list(srcz)
return station_levels.Copy()
else
return list(srcz)

Expand Down

0 comments on commit 519121f

Please sign in to comment.