Replaces info class with notice and purges info (#26421)

This commit is contained in:
Burzah
2024-08-13 09:46:58 +00:00
committed by GitHub
parent 4d87562d25
commit c434f08f4f
101 changed files with 231 additions and 239 deletions
+1 -1
View File
@@ -116,7 +116,7 @@
if(BARSIGN_WIRED)
. += "<span class='notice'>The frame lacks a <i>glass screen</i> and is filled with wires that could be <b>cut</b>.</span>"
if(BARSIGN_COMPLETE)
. += "<span class='info'><b>Alt-Click</b> to toggle its power.</span>"
. += "<span class='notice'><b>Alt-Click</b> to toggle its power.</span>"
if(panel_open)
. += "<span class='notice'>It is disabled by its <i>unscrewed</i> maintenance panel that exposes an area from which the screen could be <b>pried out</b>.</span>"
+1 -1
View File
@@ -124,7 +124,7 @@
. = ..()
if(. && M.environment_smash >= env_smash_level)
deconstruct(FALSE)
to_chat(M, "<span class='info'>You smash through the wall.</span>")
to_chat(M, "<span class='notice'>You smash through the wall.</span>")
/obj/structure/falsewall/screwdriver_act(mob/living/user, obj/item/I)
if(opening)
+4 -4
View File
@@ -97,7 +97,7 @@
"<span class='warning'>You start dismantling [src] with [W].</span>")
if(W.use_tool(src, user, FULL_CUT_TIME, volume = W.tool_volume))
user.visible_message("<span class='notice'>[user] completely dismantles [src].</span>",\
"<span class='info'>You completely dismantle [src].</span>")
"<span class='notice'>You completely dismantle [src].</span>")
qdel(src)
return
var/current_stage = hole_size
@@ -108,15 +108,15 @@
switch(hole_size)
if(NO_HOLE)
user.visible_message("<span class='notice'>[user] cuts into [src] some more.</span>",\
"<span class='info'>You could probably fit yourself through that hole now. Although climbing through would be much faster if you made it even bigger.</span>")
"<span class='notice'>You could probably fit yourself through that hole now. Although climbing through would be much faster if you made it even bigger.</span>")
hole_size = MEDIUM_HOLE
if(MEDIUM_HOLE)
user.visible_message("<span class='notice'>[user] completely cuts through [src].</span>",\
"<span class='info'>The hole in [src] is now big enough to walk through.</span>")
"<span class='notice'>The hole in [src] is now big enough to walk through.</span>")
hole_size = LARGE_HOLE
if(LARGE_HOLE)
user.visible_message("<span class='notice'>[user] completely dismantles [src].</span>",\
"<span class='info'>You completely take apart [src].</span>")
"<span class='notice'>You completely take apart [src].</span>")
qdel(src)
return
update_cut_status()
+1 -1
View File
@@ -13,7 +13,7 @@
var/mover_dir = null
/obj/structure/railing/get_climb_text()
return "<span class='info'>You can <b>Click-Drag</b> yourself to [src] to climb over it after a short delay.</span>"
return "<span class='notice'>You can <b>Click-Drag</b> yourself to [src] to climb over it after a short delay.</span>"
/// aesthetic corner sharp edges hurt oof ouch
/obj/structure/railing/corner
@@ -244,7 +244,7 @@
/obj/item/roller_holder/attack_self(mob/user as mob)
if(!held)
to_chat(user, "<span class='info'>The rack is empty.</span>")
to_chat(user, "<span class='notice'>The rack is empty.</span>")
return
to_chat(user, "<span class='notice'>You deploy the roller bed.</span>")
@@ -24,7 +24,7 @@
/obj/structure/chair/examine(mob/user)
. = ..()
. += "<span class='info'>You can <b>Alt-Click</b> [src] to rotate it.</span>"
. += "<span class='notice'>You can <b>Alt-Click</b> [src] to rotate it.</span>"
/obj/structure/chair/narsie_act()
if(prob(20))
@@ -585,7 +585,7 @@
/obj/item/chair/examine(mob/user)
. = ..()
. += "<span class='info'>You can <b>Alt-Click</b> [src] to place it down.</span>"
. += "<span class='notice'>You can <b>Alt-Click</b> [src] to place it down.</span>"
/obj/item/chair/wood
name = "wooden chair"
+2 -2
View File
@@ -54,9 +54,9 @@
. += deconstruction_hints(user)
if(can_be_flipped)
if(flipped)
. += "<span class='info'><b>Alt-Shift-Click</b> to right the table again.</span>"
. += "<span class='notice'><b>Alt-Shift-Click</b> to right the table again.</span>"
else
. += "<span class='info'><b>Alt-Shift-Click</b> to flip over the table.</span>"
. += "<span class='notice'><b>Alt-Shift-Click</b> to flip over the table.</span>"
/obj/structure/table/proc/deconstruction_hints(mob/user)
return "<span class='notice'>The top is <b>screwed</b> on, but the main <b>bolts</b> are also visible.</span>"
@@ -15,7 +15,7 @@
/obj/structure/transit_tube_construction/examine(mob/user)
. = ..()
. += "<span class='info'><b>Alt-Click</b> to rotate it, <b>Alt-Shift-Click</b> to flip it.</span>"
. += "<span class='notice'><b>Alt-Click</b> to rotate it, <b>Alt-Shift-Click</b> to flip it.</span>"
/obj/structure/transit_tube_construction/AltClick(mob/user)
if(user.stat || HAS_TRAIT(user, TRAIT_HANDS_BLOCKED) || !Adjacent(user))
@@ -47,8 +47,8 @@
else
. += "<span class='notice'>The maintenance panel is <b>wired</b>, but the circuit slot is <i>empty</i>.</span>"
. += "<span class='info'><b>Alt-Click</b> to rotate it.</span>"
. += "<span class='info'><b>Alt-Shift-Click</b> to flip it.</span>"
. += "<span class='notice'><b>Alt-Click</b> to rotate it.</span>"
. += "<span class='notice'><b>Alt-Shift-Click</b> to flip it.</span>"
/obj/structure/windoor_assembly/Initialize(mapload, set_dir)
. = ..()