mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
[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:
@@ -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>"
|
||||
|
||||
@@ -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()
|
||||
|
||||
@@ -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 = " "
|
||||
switch(index)
|
||||
|
||||
Reference in New Issue
Block a user