mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
[MIRROR] some more spans (#9170)
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
This commit is contained in:
@@ -55,9 +55,9 @@
|
||||
|
||||
if(is_special_character(C.mob))
|
||||
if(C.mob?.mind?.special_role)
|
||||
entry += "<b><span class='red'>[C.mob.mind.special_role]</span></b>"
|
||||
entry += span_red(span_bold("[C.mob.mind.special_role]"))
|
||||
else
|
||||
entry += "<b><span class='red'>Antagonist</span></b>"
|
||||
entry += span_red(span_bold("Antagonist"))
|
||||
|
||||
entry += "</td><td>"
|
||||
|
||||
@@ -81,11 +81,11 @@
|
||||
entry += "[C.key]"
|
||||
var/mob/observer/dead/O = C.mob
|
||||
if(isobserver(O))
|
||||
entry += " - <span class='gray'>Observing</span><br>"
|
||||
entry += " - " + span_gray("Observing") + "<br>"
|
||||
else if(istype(O,/mob/new_player))
|
||||
entry += " - <span class='blue'>In Lobby</span><br>"
|
||||
entry += " - " + span_blue("In Lobby") + "<br>"
|
||||
else
|
||||
entry += " - <span class='green'>Playing</span><br>"
|
||||
entry += " - "+ span_green("Playing") + "<br>"
|
||||
|
||||
Lines += entry
|
||||
|
||||
|
||||
Reference in New Issue
Block a user