mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-14 03:21:53 +00:00
* spanish? * aaaagain * keep maptext * Update robot_items.dm * Update span_defines.dm * compiles * Update silicon_mob.dm * compile
13 lines
382 B
Plaintext
13 lines
382 B
Plaintext
/client/verb/webmap()
|
|
set name = "webmap"
|
|
set hidden = TRUE
|
|
|
|
if(!SSmapping.map_datum.webmap_url)
|
|
to_chat(usr, SPAN_WARNING("The current map has no defined webmap. Please file an issue report."))
|
|
return
|
|
|
|
if(tgui_alert(usr, "Do you want to open this map's Webmap in your browser?", "Webmap", list("Yes", "No")) != "Yes")
|
|
return
|
|
|
|
usr << link(SSmapping.map_datum.webmap_url)
|