Files
Paradise/code/game/verbs/webmap.dm
kyunkyunkyun b0463d3c83 Convert most spans to defines (#31080)
* spanish?

* aaaagain

* keep maptext

* Update robot_items.dm

* Update span_defines.dm

* compiles

* Update silicon_mob.dm

* compile
2025-12-13 23:55:48 +00:00

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)