From 6176594c48a8d716c5ea2c8cc14bd531f447e283 Mon Sep 17 00:00:00 2001 From: FabianK3 <21039694+FabianK3@users.noreply.github.com> Date: Wed, 18 Dec 2024 11:54:30 +0100 Subject: [PATCH] Fix missing emissives for high visibility jacket (#20267) ### Summary This PR fixes the missing emissives for the high vis jacket. Pants and all alt-variations seems to be correct in the first place, the main jacket had an invalid icon state in the code when adding the emissives. --- code/modules/clothing/suits/miscellaneous.dm | 2 +- .../fabiank3-bugfix-high-vis-jacket-not-showing-emis.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/fabiank3-bugfix-high-vis-jacket-not-showing-emis.yml diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 1623ac2fd05..c36dc0dc115 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -411,7 +411,7 @@ /obj/item/clothing/suit/storage/toggle/highvis/get_mob_overlay(mob/living/carbon/human/H, mob_icon, mob_state, slot) var/image/I = ..() if(slot == slot_wear_suit_str) - var/image/emissive_overlay = emissive_appearance(mob_icon, "[opened ? "jacket_highvis_open_su_emis" : "jacket_highvis_su_emis"]", alpha = src.alpha) + var/image/emissive_overlay = emissive_appearance(mob_icon, "[opened ? "jacket_highvis_open_su-emis" : "jacket_highvis_su-emis"]", alpha = src.alpha) I.AddOverlays(emissive_overlay) return I diff --git a/html/changelogs/fabiank3-bugfix-high-vis-jacket-not-showing-emis.yml b/html/changelogs/fabiank3-bugfix-high-vis-jacket-not-showing-emis.yml new file mode 100644 index 00000000000..9d3523a1567 --- /dev/null +++ b/html/changelogs/fabiank3-bugfix-high-vis-jacket-not-showing-emis.yml @@ -0,0 +1,6 @@ +author: FabianK3 + +delete-after: True + +changes: + - bugfix: "Added missing emissives for the regular high visibility jacket."