GPS coordinates and POI names are obfuscated

This commit is contained in:
atermonera
2018-02-09 16:58:27 -08:00
parent 442b5cbdf6
commit fae9c63ccf
6 changed files with 110 additions and 41 deletions

View File

@@ -142,6 +142,10 @@ var/list/all_maps = list()
else
return list()
/datum/map/proc/get_zlevel_name(var/index)
var/datum/map_z_level/Z = zlevels["[index]"]
return Z.name
// Another way to setup the map datum that can be convenient. Just declare all your zlevels as subtypes of a common
// subtype of /datum/map_z_level and set zlevel_datum_type on /datum/map to have the lists auto-initialized.