mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-26 05:27:01 +01:00
Replaces info class with notice and purges info (#26421)
This commit is contained in:
@@ -67,7 +67,7 @@
|
||||
/obj/item/rcl/examine(mob/user)
|
||||
. = ..()
|
||||
if(loaded)
|
||||
. += "<span class='info'>It contains [loaded.amount]/[max_amount] cables.</span>"
|
||||
. += "<span class='notice'>It contains [loaded.amount]/[max_amount] cables.</span>"
|
||||
|
||||
/obj/item/rcl/Destroy()
|
||||
QDEL_NULL(loaded)
|
||||
|
||||
@@ -179,7 +179,7 @@
|
||||
mob_underlay = mutable_appearance(cached_icon, "frame1")
|
||||
update_icon(UPDATE_ICON_STATE)
|
||||
|
||||
desc = initial(desc) + "<br><span class='info'>It appears to contain [target.name].</span>"
|
||||
desc = initial(desc) + "<br><span class='notice'>It appears to contain [target.name].</span>"
|
||||
START_PROCESSING(SSobj, src)
|
||||
return ..()
|
||||
|
||||
|
||||
@@ -77,7 +77,7 @@
|
||||
/obj/item/holosign_creator/janitor/examine(mob/user)
|
||||
. = ..()
|
||||
if(ishuman(user))
|
||||
. += "<span class='info'>Alt Click to [wet_enabled ? "deactivate" : "activate"] its built-in wet evaporation timer.</span>"
|
||||
. += "<span class='notice'>Alt Click to [wet_enabled ? "deactivate" : "activate"] its built-in wet evaporation timer.</span>"
|
||||
|
||||
|
||||
/obj/item/holosign_creator/janitor/afterattack(atom/target, mob/user, flag)
|
||||
|
||||
@@ -561,8 +561,8 @@
|
||||
to_chat(user, "<span class='notice'>You are already using [src].</span>")
|
||||
return
|
||||
|
||||
user.visible_message("<span class='info'>[user] kneels[M == user ? null : " next to [M]"] and begins to utter a prayer to [SSticker.Bible_deity_name].</span>",
|
||||
"<span class='info'>You kneel[M == user ? null : " next to [M]"] and begin a prayer to [SSticker.Bible_deity_name].</span>")
|
||||
user.visible_message("<span class='notice'>[user] kneels[M == user ? null : " next to [M]"] and begins to utter a prayer to [SSticker.Bible_deity_name].</span>",
|
||||
"<span class='notice'>You kneel[M == user ? null : " next to [M]"] and begin a prayer to [SSticker.Bible_deity_name].</span>")
|
||||
|
||||
praying = TRUE
|
||||
if(do_after(user, 15 SECONDS, target = M))
|
||||
@@ -614,8 +614,8 @@
|
||||
|
||||
if(!(ghostcall_CD > world.time))
|
||||
ghostcall_CD = world.time + 5 MINUTES
|
||||
user.visible_message("<span class='info'>[user] kneels and begins to utter a prayer to [SSticker.Bible_deity_name] while drawing a circle with salt!</span>",
|
||||
"<span class='info'>You kneel and begin a prayer to [SSticker.Bible_deity_name] while drawing a circle!</span>")
|
||||
user.visible_message("<span class='notice'>[user] kneels and begins to utter a prayer to [SSticker.Bible_deity_name] while drawing a circle with salt!</span>",
|
||||
"<span class='notice'>You kneel and begin a prayer to [SSticker.Bible_deity_name] while drawing a circle!</span>")
|
||||
notify_ghosts("The Chaplain is calling ghosts to [get_area(src)] with [name]!", source = src)
|
||||
else
|
||||
to_chat(user, "<span class='notice'>You need to wait before using [src] again.</span>")
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
if(tank)
|
||||
. += "<span class='notice'>[bicon(tank)] It has [tank] mounted onto it.</span>"
|
||||
for(var/obj/item/I in loaded_items)
|
||||
. += "<span class='info'>[bicon(I)] It has [I] loaded.</span>"
|
||||
. += "<span class='notice'>[bicon(I)] It has [I] loaded.</span>"
|
||||
|
||||
/**
|
||||
* Arguments:
|
||||
|
||||
Reference in New Issue
Block a user