mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-20 15:21:29 +00:00
13 lines
386 B
Plaintext
13 lines
386 B
Plaintext
/client/verb/webmap()
|
|
set name = "webmap"
|
|
set hidden = TRUE
|
|
|
|
if(!SSmapping.map_datum.webmap_url)
|
|
to_chat(usr, "<span class='warning'>The current map has no defined webmap. Please file an issue report.</span>")
|
|
return
|
|
|
|
if(alert(usr, "Do you want to open this map's Webmap in your browser?", "Webmap", "Yes", "No") != "Yes")
|
|
return
|
|
|
|
usr << link(SSmapping.map_datum.webmap_url)
|