From ffa697f6c50fee6ff345d7af397d68f8461a3c84 Mon Sep 17 00:00:00 2001 From: Adrer Date: Mon, 19 Feb 2024 12:41:13 +0100 Subject: [PATCH] Fixes invisible suits on Grey, Kidan and Drask (#24169) * Fixes invisible suits * Update code/modules/clothing/suits/misc_suits.dm Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> --------- Co-authored-by: adrermail@gmail.com Co-authored-by: Henri215 <77684085+Henri215@users.noreply.github.com> --- code/modules/clothing/suits/misc_suits.dm | 9 +++++++++ code/modules/customitems/item_defines.dm | 1 + 2 files changed, 10 insertions(+) diff --git a/code/modules/clothing/suits/misc_suits.dm b/code/modules/clothing/suits/misc_suits.dm index d24cb224559..1165ab50057 100644 --- a/code/modules/clothing/suits/misc_suits.dm +++ b/code/modules/clothing/suits/misc_suits.dm @@ -756,6 +756,9 @@ actions_types = list() adjust_flavour = null allowed = list(/obj/item/flashlight, /obj/item/tank/internals/emergency_oxygen, /obj/item/toy,/obj/item/storage/fancy/cigarettes, /obj/item/lighter, /obj/item/gun/projectile/automatic/pistol, /obj/item/gun/projectile/revolver, /obj/item/gun/energy/detective) + sprite_sheets = list( + "Vox" = 'icons/mob/clothing/species/vox/suit.dmi' + ) /obj/item/clothing/suit/jacket/miljacket/navy name = "navy military jacket" @@ -978,6 +981,9 @@ actions_types = list() adjust_flavour = null resistance_flags = NONE + sprite_sheets = list( + "Vox" = 'icons/mob/clothing/species/vox/suit.dmi' + ) /obj/item/clothing/suit/jacket/motojacket name = "leather motorcycle jacket" @@ -1001,6 +1007,9 @@ icon_state = "leathercoat" body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS + sprite_sheets = list( + "Vox" = 'icons/mob/clothing/species/vox/suit.dmi' + ) /obj/item/clothing/suit/officercoat name = "clown officer's coat" diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index 26592194f5d..27353c6307b 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -1058,6 +1058,7 @@ cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS actions_types = list(/datum/action/item_action/zipper) adjust_flavour = "unzip" + sprite_sheets = null //////////// Uniforms ////////////