diff --git a/code/modules/client/preference_setup/loadout/items/factions.dm b/code/modules/client/preference_setup/loadout/items/factions.dm index de324b32139..3c0df70738c 100644 --- a/code/modules/client/preference_setup/loadout/items/factions.dm +++ b/code/modules/client/preference_setup/loadout/items/factions.dm @@ -669,7 +669,6 @@ GLOBAL_DATUM_INIT(gear_tweak_modsuit_configuration, /datum/gear_tweak/modsuit_co heph_labcoats["hephaestus labcoat, long"] = /obj/item/clothing/suit/storage/toggle/longcoat/heph heph_labcoats["hephaestus corporate jacket"] = /obj/item/clothing/suit/storage/toggle/corp/heph heph_labcoats["hephaestus winter coat"] = /obj/item/clothing/suit/storage/hooded/wintercoat/heph - heph_labcoats["hephaestus winter coat, alt"] = /obj/item/clothing/suit/storage/hooded/wintercoat/heph/alt gear_tweaks += new /datum/gear_tweak/path(heph_labcoats) /datum/gear/faction/heph_beret @@ -709,7 +708,6 @@ GLOBAL_DATUM_INIT(gear_tweak_modsuit_configuration, /datum/gear_tweak/modsuit_co nt_labcoats["nanotrasen labcoat, long"] = /obj/item/clothing/suit/storage/toggle/longcoat/nt nt_labcoats["nanotrasen corporate jacket"] = /obj/item/clothing/suit/storage/toggle/corp/nt nt_labcoats["nanotrasen winter coat"] = /obj/item/clothing/suit/storage/hooded/wintercoat/nt - nt_labcoats["nanotrasen winter coat, alt"] = /obj/item/clothing/suit/storage/hooded/wintercoat/nt/alt gear_tweaks += new /datum/gear_tweak/path(nt_labcoats) /datum/gear/faction/nt_custodialjumpsuit diff --git a/code/modules/clothing/suits/hoodies.dm b/code/modules/clothing/suits/hoodies.dm index e41eb690c7b..3638a6aaadb 100644 --- a/code/modules/clothing/suits/hoodies.dm +++ b/code/modules/clothing/suits/hoodies.dm @@ -30,6 +30,9 @@ SEND_SIGNAL(src, COMSIG_ITEM_UPDATE_STATE) update_icon() +/obj/item/clothing/suit/storage/hooded/AltClick(mob/user) + ToggleHood(user) + //hoodies and the like /obj/item/clothing/suit/storage/hooded/wintercoat @@ -219,19 +222,11 @@ icon_state = "coatheph" item_state = "coatheph" -/obj/item/clothing/suit/storage/hooded/wintercoat/heph/alt - icon_state = "coatheph_alt" - item_state = "coatheph_alt" - /obj/item/clothing/suit/storage/hooded/wintercoat/nt name = "nanotrasen winter coat" icon_state = "coatnt" item_state = "coatnt" -/obj/item/clothing/suit/storage/hooded/wintercoat/nt/alt - icon_state = "coatnt_alt" - item_state = "coatnt_alt" - /obj/item/clothing/suit/storage/hooded/wintercoat/zeng name = "zeng-hu winter coat" icon_state = "coatzeng" diff --git a/html/changelogs/ElorgRHG-some-winter-coat-resprite-related-stuff.yml b/html/changelogs/ElorgRHG-some-winter-coat-resprite-related-stuff.yml new file mode 100644 index 00000000000..eacfb7df6f3 --- /dev/null +++ b/html/changelogs/ElorgRHG-some-winter-coat-resprite-related-stuff.yml @@ -0,0 +1,15 @@ +# Your name. +author: ElorgRHG + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - imageadd: "Resprited winter coats." + - rscadd: "Alt-clicking the winter coats will now pull their hoods up." + - rscdel: "Removed the red, Hephaestus alt, Nanotrasen alt for consistency with corporate/departmental jackets." diff --git a/icons/obj/clothing/hoodies.dmi b/icons/obj/clothing/hoodies.dmi index 77e6a0ee8e6..f76234e85ff 100644 Binary files a/icons/obj/clothing/hoodies.dmi and b/icons/obj/clothing/hoodies.dmi differ