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
@@ -21,7 +21,7 @@
if(isanimal(target))
var/mob/living/simple_animal/M = target
if(M.sentience_type != revive_type)
to_chat(user, "<span class='info'>[src] does not work on this sort of creature.</span>")
to_chat(user, "<span class='notice'>[src] does not work on this sort of creature.</span>")
return
if(M.stat == DEAD)
M.faction = list("neutral")
@@ -49,10 +49,10 @@
icon_state = "lazarus_empty"
return
else
to_chat(user, "<span class='info'>[src] is only effective on the dead.</span>")
to_chat(user, "<span class='notice'>[src] is only effective on the dead.</span>")
return
else
to_chat(user, "<span class='info'>[src] is only effective on lesser beings.</span>")
to_chat(user, "<span class='notice'>[src] is only effective on lesser beings.</span>")
return
/obj/item/lazarus_injector/emag_act(mob/user)
@@ -68,9 +68,9 @@
/obj/item/lazarus_injector/examine(mob/user)
. = ..()
if(!loaded)
. += "<span class='info'>[src] is empty.</span>"
. += "<span class='notice'>[src] is empty.</span>"
if(malfunctioning)
. += "<span class='info'>The display on [src] seems to be flickering.</span>"
. += "<span class='notice'>The display on [src] seems to be flickering.</span>"
/*********************Mob Capsule*************************/
+2 -2
View File
@@ -25,10 +25,10 @@
/obj/item/resonator/attack_self(mob/user)
if(burst_time == 50)
burst_time = 30
to_chat(user, "<span class='info'>You set the resonator's fields to detonate after 3 seconds.</span>")
to_chat(user, "<span class='notice'>You set the resonator's fields to detonate after 3 seconds.</span>")
else
burst_time = 50
to_chat(user, "<span class='info'>You set the resonator's fields to detonate after 5 seconds.</span>")
to_chat(user, "<span class='notice'>You set the resonator's fields to detonate after 5 seconds.</span>")
/obj/item/resonator/proc/CreateResonance(target, mob/user)
var/turf/T = get_turf(target)
@@ -100,7 +100,7 @@
/obj/item/wormhole_jaunter/contractor/examine(mob/user)
. = ..()
. += "<span class='info'>You can <b>Alt-Click</b> [src] to change its destination!</span>"
. += "<span class='notice'>You can <b>Alt-Click</b> [src] to change its destination!</span>"
/obj/item/wormhole_jaunter/contractor/AltClick(mob/user)
if(user.stat || HAS_TRAIT(user, TRAIT_HANDS_BLOCKED) || !Adjacent(user))
+2 -2
View File
@@ -494,10 +494,10 @@
if(points)
var/obj/item/card/id/C = I
C.mining_points += points
to_chat(user, "<span class='info'>You transfer [points] points to [C].</span>")
to_chat(user, "<span class='notice'>You transfer [points] points to [C].</span>")
points = 0
else
to_chat(user, "<span class='info'>There's no points left on [src].</span>")
to_chat(user, "<span class='notice'>There's no points left on [src].</span>")
..()
/obj/item/card/mining_point_card/examine(mob/user)
+6 -6
View File
@@ -90,7 +90,7 @@
/mob/living/simple_animal/hostile/mining_drone/attackby(obj/item/I, mob/user, params)
if(istype(I, /obj/item/mining_scanner) || istype(I, /obj/item/t_scanner/adv_mining_scanner))
to_chat(user, "<span class='info'>You instruct [src] to drop any collected ore.</span>")
to_chat(user, "<span class='notice'>You instruct [src] to drop any collected ore.</span>")
DropOre()
return
if(istype(I, /obj/item/borg/upgrade/modkit))
@@ -116,7 +116,7 @@
if(!I.tool_use_check(user, 1))
return
if(AIStatus != AI_OFF && AIStatus != AI_IDLE)
to_chat(user, "<span class='info'>[src] is moving around too much to repair!</span>")
to_chat(user, "<span class='notice'>[src] is moving around too much to repair!</span>")
return
WELDER_ATTEMPT_REPAIR_MESSAGE
if(I.use_tool(src, user, 15, 1, volume = I.tool_volume) && health != maxHealth)
@@ -137,9 +137,9 @@
toggle_mode()
switch(mode)
if(MINEDRONE_COLLECT)
to_chat(M, "<span class='info'>[src] has been set to search and store loose ore.</span>")
to_chat(M, "<span class='notice'>[src] has been set to search and store loose ore.</span>")
if(MINEDRONE_ATTACK)
to_chat(M, "<span class='info'>[src] has been set to attack hostile wildlife.</span>")
to_chat(M, "<span class='notice'>[src] has been set to attack hostile wildlife.</span>")
return
..()
@@ -164,7 +164,7 @@
minimum_distance = 1
retreat_distance = null
icon_state = "mining_drone"
to_chat(src, "<span class='info'>You are set to collect mode. You can now collect loose ore.</span>")
to_chat(src, "<span class='notice'>You are set to collect mode. You can now collect loose ore.</span>")
/mob/living/simple_animal/hostile/mining_drone/proc/SetOffenseBehavior()
mode = MINEDRONE_ATTACK
@@ -175,7 +175,7 @@
retreat_distance = 2
minimum_distance = 1
icon_state = "mining_drone_offense"
to_chat(src, "<span class='info'>You are set to attack mode. You can now attack from range.</span>")
to_chat(src, "<span class='notice'>You are set to attack mode. You can now attack from range.</span>")
/mob/living/simple_animal/hostile/mining_drone/AttackingTarget()
if(istype(target, /obj/item/stack/ore) && mode == MINEDRONE_COLLECT)