Files
GS13NG/code/modules/client/verbs/minimap.dm
kevinz000 269b7c2939 k
2020-03-09 21:06:00 -07:00

11 lines
365 B
Plaintext

/client/verb/show_station_minimap()
set category = "OOC"
set name = "Show Station Minimap"
set desc = "Shows a minimap of the currently loaded station map."
if(!CONFIG_GET(flag/minimaps_enabled))
to_chat(usr, "<span class='boldwarning'>Minimap generation is not enabled in the server's configuration.</span>")
return
SSminimaps.station_minimap.show(src)