From b079617adce209e61cf36ebe24471ecc3948ebf4 Mon Sep 17 00:00:00 2001 From: Chap Date: Fri, 29 Aug 2025 13:43:17 +0200 Subject: [PATCH] [FIX] Extinguishing someone else gives the right message (#30319) * Send self message to the right person * Change visible message to the right target --------- Co-authored-by: adrermail@gmail.com --- code/modules/mob/living/carbon/carbon_procs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/carbon_procs.dm b/code/modules/mob/living/carbon/carbon_procs.dm index 1b21e72ae56..26784e21515 100644 --- a/code/modules/mob/living/carbon/carbon_procs.dm +++ b/code/modules/mob/living/carbon/carbon_procs.dm @@ -324,7 +324,7 @@ self_message = "You burn your hand trying to extinguish [target]!" H.update_icons() - target.visible_message("[src] tries to extinguish [target]!", self_message) + visible_message("[src] tries to extinguish [target]!", self_message) playsound(target, 'sound/weapons/thudswoosh.ogg', 50, TRUE, -1) target.adjust_fire_stacks(-0.5)