From 5eb26f16c1127f409260e3d4e6a8698fdb23de47 Mon Sep 17 00:00:00 2001 From: Manatee <74586965+MajManatee@users.noreply.github.com> Date: Fri, 20 Feb 2026 18:24:21 -0600 Subject: [PATCH] Fixes smoke blowing showing the wrong perspective (#95209) ## About The Pull Request Swaps out an incorrect variable to make blowing smoke appear from the correct perspective. ## Why It's Good For The Game bug fix ## Changelog :cl: fix: Smoke blowing emote perspective is now correct. /:cl: --- code/game/objects/items/cigarettes.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/cigarettes.dm b/code/game/objects/items/cigarettes.dm index a3366601f1e..3774743375f 100644 --- a/code/game/objects/items/cigarettes.dm +++ b/code/game/objects/items/cigarettes.dm @@ -502,7 +502,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM ) else if(ishuman(guy_infront) && guy_infront.get_bodypart(BODY_ZONE_HEAD) && !guy_infront.is_pepper_proof()) - guy_infront.visible_message( + smoker.visible_message( span_notice("[smoker] exhales a large cloud of smoke from [src] directly at [guy_infront]'s face!"), span_notice("You exhale a large cloud of smoke from [src] directly at [guy_infront]'s face."), ignored_mobs = guy_infront, @@ -511,7 +511,7 @@ CIGARETTE PACKETS ARE IN FANCY.DM smoke_in_face(guy_infront) else - guy_infront.visible_message( + smoker.visible_message( span_notice("[smoker] exhales a large cloud of smoke from [src] at [guy_infront]."), span_notice("You exhale a large cloud of smoke from [src] at [guy_infront]."), )