[MIRROR] next set of spans (#9247)

Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
Co-authored-by: Kashargul <KashL@t-online.de>
This commit is contained in:
CHOMPStation2
2024-10-17 16:33:07 -07:00
committed by GitHub
parent bc6662ef9e
commit 7416cbea22
599 changed files with 2619 additions and 2564 deletions

View File

@@ -26,7 +26,7 @@
if (!ishuman(user) && !istype(user,/mob/living/silicon/robot))
return ..(user)
var/t1 = text("<B>Access control</B><br>\n")
var/t1 = span_bold("Access control") + "<br>\n"
if (last_configurator)
t1 += "Operator: [last_configurator]<br>"

View File

@@ -47,7 +47,7 @@
playsound(src, S.attack_sound, 75, 1)
take_damage(damage)
else
visible_message("<b>\The [user]</b> bonks \the [src] harmlessly.")
visible_message(span_infoplain(span_bold("\The [user]") + " bonks \the [src] harmlessly."))
user.do_attack_animation(src)
/obj/machinery/door/New()

View File

@@ -88,7 +88,7 @@
if(pdiff >= FIREDOOR_MAX_PRESSURE_DIFF)
. += span_warning("WARNING: Current pressure differential is [pdiff]kPa! Opening door may result in injury!")
. += "<b>Sensor readings:</b>"
. += span_bold("Sensor readings:")
for(var/index = 1; index <= tile_info.len; index++)
var/o = "&nbsp;&nbsp;"
switch(index)