mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-22 17:06:56 +01:00
Co-authored-by: silicons <no@you.cat> Co-authored-by: LordME <58342752+TheLordME@users.noreply.github.com>
11 lines
377 B
Plaintext
11 lines
377 B
Plaintext
/client/verb/show_station_minimap()
|
|
set category = VERB_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)
|