mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-31 20:53:34 +00:00
* List Input refresh * Modal Alerts * Text Input * Number Input * Split Button * Renaming * Alert converts * Text Input Conversion (Part 1) And TextArea Autofocus + maxLength * Text Input Conversion (Part 2) * AAAAAAAAAAAAAAAAAAAA * I'm FUCKED * @GDNgit review changes * "'" fixes * Revert TGUI Alert from admin delete * NumberInput Window size * CRASH if empty list * Update code/modules/tgui/tgui_input/list_input.dm * TGUI Rebuild * TGUI Rebuild * Update code/modules/paperwork/faxmachine.dm * _char * compile * Rebuild --------- Co-authored-by: Aylong <69762909+Aylong220@users.noreply.github.com> Co-authored-by: S34N <12197162+S34NW@users.noreply.github.com>
13 lines
397 B
Plaintext
13 lines
397 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(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)
|