mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-18 02:24:11 +01:00
[READY] BYOND 516 compatability (#25105)
* Preliminary changes for 516 * Also removes the goon folder * Fixes a BUNCH of UIs * update our things * debug proc * le maintainer verb * fix strip panel * browseroutput => chat_panel * prettier, remove obsolete bat * tidu tgui say css * href purge * 515 compat * 515 compat 2 * more required chores * comments * fully working 515 * bungle * correct this * fixes 515 support * prettier * new CI * fixes old href styles sneaking in * update docs to reflect href changes * more href fixes (thanks cdui) * MORE href nonsense * even more hrefs (seriously wtf) * Update code/modules/admin/permissionverbs/permissionedit.dm * error on fail --------- Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com>
This commit is contained in:
@@ -138,7 +138,7 @@
|
||||
if(selected_material == mat_id)
|
||||
dat += " <i>Smelting</i>"
|
||||
else
|
||||
dat += " <A href='?src=[console.UID()];material=[mat_id]'><b>Not Smelting</b></A> "
|
||||
dat += " <A href='byond://?src=[console.UID()];material=[mat_id]'><b>Not Smelting</b></A> "
|
||||
dat += "<br>"
|
||||
|
||||
dat += "<br><br>"
|
||||
@@ -150,16 +150,16 @@
|
||||
if(selected_alloy == D.id)
|
||||
dat += " <i>Smelting</i>"
|
||||
else
|
||||
dat += " <A href='?src=[console.UID()];alloy=[D.id]'><b>Not Smelting</b></A> "
|
||||
dat += " <A href='byond://?src=[console.UID()];alloy=[D.id]'><b>Not Smelting</b></A> "
|
||||
dat += "<br>"
|
||||
|
||||
dat += "<br><br>"
|
||||
//On or off
|
||||
dat += "Machine is currently "
|
||||
if(on)
|
||||
dat += "<A href='?src=[console.UID()];set_on=off'>On</A> "
|
||||
dat += "<A href='byond://?src=[console.UID()];set_on=off'>On</A> "
|
||||
else
|
||||
dat += "<A href='?src=[console.UID()];set_on=on'>Off</A> "
|
||||
dat += "<A href='byond://?src=[console.UID()];set_on=on'>Off</A> "
|
||||
|
||||
return dat
|
||||
|
||||
|
||||
Reference in New Issue
Block a user