mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-25 21:19:44 +01:00
Fix a bunch of issues and runtimes (#17951)
* selection target * ugh * fix deadmin * larger * fix paper icons * those are inverted * don't miss that * fix all * point transfer * add nostrip flag to items * un.... teppi * . * end life proc after qdel * this could be null in very rare cases * this has a lot of sleeps, someday should be refactored and check for qdeleted * needs to be an object * qdel check this * use the rsc properly * wtf? * . * fix narrate * . * push * inform user, null it * . * can be null * fix maint lurkers * . * spans * . * fix that too * urg * fix distillery * don't wrap them * needs usr * Update cash_register.dm * quick hook cleanup * lots of fixes * . * clean that up for reasons
This commit is contained in:
@@ -44,15 +44,15 @@
|
||||
if(!logo)
|
||||
return
|
||||
if(logo == "SolGov")
|
||||
logo = "sglogo.png"
|
||||
logo = 'html/images/sglogo.png'
|
||||
//VOREStation Edit/Add
|
||||
else if(logo == "NanoTrasen")
|
||||
logo = "ntlogo.png"
|
||||
logo = 'html/images/ntlogo.png'
|
||||
else
|
||||
logo = "trader.png"
|
||||
logo = 'html/images/trader.png'
|
||||
//VOREStation Edit/Add End
|
||||
//TODO change logo based on who you're contacting.
|
||||
text = "<center><img src = [logo]></br>"
|
||||
text = "<center><img src=\ref[logo]></br>"
|
||||
text += span_bold("[origin] Quantum Uplink Signed Message") + "<br>"
|
||||
text += span_small("Encryption key: [originhash]<br>Challenge: [timehash]") + "<br></center><hr>"
|
||||
|
||||
|
||||
@@ -341,8 +341,10 @@
|
||||
t = replacetext(t, "\[/grid\]", "</td></tr></table>")
|
||||
t = replacetext(t, "\[row\]", "</td><tr>")
|
||||
t = replacetext(t, "\[cell\]", "<td>")
|
||||
t = replacetext(t, "\[logo\]", "<img src = ntlogo.png>")
|
||||
t = replacetext(t, "\[sglogo\]", "<img src = sglogo.png>")
|
||||
t = replacetext(t, "\[logo\]", "<img src=\ref['html/images/ntlogo.png']>")
|
||||
t = replacetext(t, "\[sglogo\]", "<img src=\ref['html/images/sglogo.png']>")
|
||||
t = replacetext(t, "\[trlogo\]", "<img src=\ref['html/images/trader.png']>")
|
||||
// t = replacetext(t, "\[pclogo\]", "<img src=\ref['html/images/pclogo.png']>") // Not available on virgo
|
||||
|
||||
t = "<font face=\"[deffont]\" color=[P ? P.colour : "black"]>[t]</font>"
|
||||
else // If it is a crayon, and he still tries to use these, make them empty!
|
||||
|
||||
Reference in New Issue
Block a user