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 ////////////