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
🆑
fix: Smoke blowing emote perspective is now correct. 
/🆑
This commit is contained in:
Manatee
2026-02-20 19:24:21 -05:00
committed by GitHub
parent 8fb4310e8f
commit 5eb26f16c1
+2 -2
View File
@@ -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]."),
)