From acc338378db0df67f0a1c215d6cb3961aaabf702 Mon Sep 17 00:00:00 2001 From: Ghommie Date: Sat, 27 Jul 2019 19:44:17 +0200 Subject: [PATCH] One liner fix for the most useless feature of the year. --- code/modules/reagents/reagent_containers/rags.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/reagents/reagent_containers/rags.dm b/code/modules/reagents/reagent_containers/rags.dm index 47f3ba5efa..5c7e7fa1f7 100644 --- a/code/modules/reagents/reagent_containers/rags.dm +++ b/code/modules/reagents/reagent_containers/rags.dm @@ -47,7 +47,7 @@ /obj/item/reagent_containers/rag/pre_altattackby(mob/living/M, mob/living/user, params) if(istype(M) && user.a_intent == INTENT_HELP) user.changeNext_move(CLICK_CD_MELEE) - if(user.on_fire) + if(M.on_fire) user.visible_message("\The [user] uses \the [src] to pat out [M == user ? "[user.p_their()]" : "\the [M]'s"] flames!") if(hitsound) playsound(M, hitsound, 25, 1)