From cb894c72acdac451fa9cd61da702eadf6038b7c9 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Sat, 16 Apr 2022 01:58:40 +0200 Subject: [PATCH] [MIRROR] washing someone else's mouth out with soap no longer washes YOUR mouth out with soap instead [MDB IGNORE] (#12792) * washing someone else's mouth out with soap no longer washes YOUR mouth out with soap instead (#66163) * washing someone else's mouth out with soap no longer washes YOUR mouth out with soap instead Co-authored-by: ATH1909 <42606352+ATH1909@users.noreply.github.com> --- code/game/objects/items/clown_items.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/clown_items.dm b/code/game/objects/items/clown_items.dm index 18790682cf9..4d1290eee0e 100644 --- a/code/game/objects/items/clown_items.dm +++ b/code/game/objects/items/clown_items.dm @@ -148,11 +148,11 @@ decreaseUses(user) else if(ishuman(target) && user.zone_selected == BODY_ZONE_PRECISE_MOUTH) - var/mob/living/carbon/human/human_user = user + var/mob/living/carbon/human/human_target = target user.visible_message(span_warning("\the [user] washes \the [target]'s mouth out with [src.name]!"), span_notice("You wash \the [target]'s mouth out with [src.name]!")) //washes mouth out with soap sounds better than 'the soap' here if(user.zone_selected == "mouth") - if(human_user.lip_style) + if(human_target.lip_style) user.mind?.adjust_experience(/datum/skill/cleaning, CLEAN_SKILL_GENERIC_WASH_XP) - human_user.update_lips(null) + human_target.update_lips(null) decreaseUses(user) return else if(istype(target, /obj/structure/window))