From 4d5a0228cb41fbffb6667bf6219a608aace8121d Mon Sep 17 00:00:00 2001 From: Higgin Date: Tue, 14 Feb 2023 13:07:04 -0800 Subject: [PATCH] [MODULAR] Fixes op table numbing warning. (#19340) Fixes op table numbing warning. --- .../master_files/code/game/objects/structures/tables_racks.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modular_skyrat/master_files/code/game/objects/structures/tables_racks.dm b/modular_skyrat/master_files/code/game/objects/structures/tables_racks.dm index 4a54c0485d8..14e8049a4dd 100644 --- a/modular_skyrat/master_files/code/game/objects/structures/tables_racks.dm +++ b/modular_skyrat/master_files/code/game/objects/structures/tables_racks.dm @@ -25,6 +25,7 @@ // If stasis isn't an option, only numbing is applied ADD_TRAIT(target, TRAIT_NUMBED, REF(src)) + target.throw_alert("numbed", /atom/movable/screen/alert/numbed) ///Used to remove the effects of stasis and numbing when a patient is unbuckled /obj/structure/table/optable/proc/thaw_them(mob/living/target) @@ -34,6 +35,7 @@ return REMOVE_TRAIT(target, TRAIT_NUMBED, REF(src)) + target.clear_alert("numbed", /atom/movable/screen/alert/numbed) /obj/structure/table/optable/post_buckle_mob(mob/living/patient) mark_patient(potential_patient = patient)