diff --git a/modular_skyrat/master_files/code/modules/clothing/under/jobs/cargo.dm b/modular_skyrat/master_files/code/modules/clothing/under/jobs/cargo.dm index 8e84aae33ba..709825f229b 100644 --- a/modular_skyrat/master_files/code/modules/clothing/under/jobs/cargo.dm +++ b/modular_skyrat/master_files/code/modules/clothing/under/jobs/cargo.dm @@ -1,5 +1,6 @@ /obj/item/clothing/under/rank/cargo worn_icon_digi = 'modular_skyrat/master_files/icons/mob/clothing/under/cargo_digi.dmi' // Anything that was in the cargo.dmi, should be in the cargo_digi.dmi + supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION /obj/item/clothing/under/rank/cargo/tech/skyrat icon = 'modular_skyrat/master_files/icons/obj/clothing/under/cargo.dmi' diff --git a/modular_skyrat/master_files/code/modules/clothing/under/jobs/centcom.dm b/modular_skyrat/master_files/code/modules/clothing/under/jobs/centcom.dm index 05aa24276d8..db7905874fc 100644 --- a/modular_skyrat/master_files/code/modules/clothing/under/jobs/centcom.dm +++ b/modular_skyrat/master_files/code/modules/clothing/under/jobs/centcom.dm @@ -3,6 +3,7 @@ /obj/item/clothing/under/rank/centcom worn_icon_digi = 'modular_skyrat/master_files/icons/mob/clothing/under/centcom_digi.dmi' // Anything that was in the rnd.dmi, should be in the rnd_digi.dmi + supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION /obj/item/clothing/under/rank/centcom/skyrat icon = 'modular_skyrat/master_files/icons/obj/clothing/under/centcom.dmi' diff --git a/modular_skyrat/master_files/code/modules/clothing/under/jobs/civilian/civilian.dm b/modular_skyrat/master_files/code/modules/clothing/under/jobs/civilian/civilian.dm index b3bb1e22fbc..9a4696e24d1 100644 --- a/modular_skyrat/master_files/code/modules/clothing/under/jobs/civilian/civilian.dm +++ b/modular_skyrat/master_files/code/modules/clothing/under/jobs/civilian/civilian.dm @@ -1,5 +1,6 @@ /obj/item/clothing/under/rank/civilian worn_icon_digi = 'modular_skyrat/master_files/icons/mob/clothing/under/civilian_digi.dmi' //Anything that was in TG's civilian.dmi, should be in our civilian_digi.dmi + supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION /obj/item/clothing/under/rank/civilian/lawyer // Lawyers' suits are in TG's suits.dmi worn_icon_digi = 'modular_skyrat/master_files/icons/mob/clothing/under/suits_digi.dmi' diff --git a/modular_skyrat/master_files/code/modules/clothing/under/jobs/civilian/suits.dm b/modular_skyrat/master_files/code/modules/clothing/under/jobs/civilian/suits.dm index d1305935fa6..0a3f35ca836 100644 --- a/modular_skyrat/master_files/code/modules/clothing/under/jobs/civilian/suits.dm +++ b/modular_skyrat/master_files/code/modules/clothing/under/jobs/civilian/suits.dm @@ -1,6 +1,7 @@ /obj/item/clothing/under/suit worn_icon_digi = 'modular_skyrat/master_files/icons/mob/clothing/under/suits_digi.dmi' //Anything that was in TG's suits.dmi, should be in our suits_digi.dmi + supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION /obj/item/clothing/under/suit/skyrat icon = 'modular_skyrat/master_files/icons/obj/clothing/under/suits.dmi' diff --git a/modular_skyrat/master_files/code/modules/clothing/under/jobs/command.dm b/modular_skyrat/master_files/code/modules/clothing/under/jobs/command.dm index 306d2a41d07..cc4a5c90918 100644 --- a/modular_skyrat/master_files/code/modules/clothing/under/jobs/command.dm +++ b/modular_skyrat/master_files/code/modules/clothing/under/jobs/command.dm @@ -1,6 +1,7 @@ /obj/item/clothing/under/rank/captain worn_icon_digi = 'modular_skyrat/master_files/icons/mob/clothing/under/command_digi.dmi' //Anything that was in TG's captain.dmi, should be in our command_digi.dmi //NOTE - TG uses "captain.dmi"; because we have a few non-captain items going in here for ease of access, this will just be "command.dmi" + supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION /obj/item/clothing/under/rank/captain/skyrat icon = 'modular_skyrat/master_files/icons/obj/clothing/under/command.dmi' diff --git a/modular_skyrat/master_files/code/modules/clothing/under/jobs/engineering.dm b/modular_skyrat/master_files/code/modules/clothing/under/jobs/engineering.dm index afcf4fbacde..180f17d34dc 100644 --- a/modular_skyrat/master_files/code/modules/clothing/under/jobs/engineering.dm +++ b/modular_skyrat/master_files/code/modules/clothing/under/jobs/engineering.dm @@ -1,5 +1,6 @@ /obj/item/clothing/under/rank/engineering worn_icon_digi = 'modular_skyrat/master_files/icons/mob/clothing/under/engineering_digi.dmi' // Anything that was in the engineering.dmi, should be in the engineering_digi.dmi + supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION /obj/item/clothing/under/rank/engineering/engineer/skyrat icon = 'modular_skyrat/master_files/icons/obj/clothing/under/engineering.dmi' diff --git a/modular_skyrat/master_files/code/modules/clothing/under/jobs/medical.dm b/modular_skyrat/master_files/code/modules/clothing/under/jobs/medical.dm index b08da53d29c..e8881d9d926 100644 --- a/modular_skyrat/master_files/code/modules/clothing/under/jobs/medical.dm +++ b/modular_skyrat/master_files/code/modules/clothing/under/jobs/medical.dm @@ -1,5 +1,6 @@ /obj/item/clothing/under/rank/medical worn_icon_digi = 'modular_skyrat/master_files/icons/mob/clothing/under/medical_digi.dmi' // Anything that was in the medical.dmi, should be in the medical_digi.dmi + supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION /obj/item/clothing/under/rank/medical/doctor/skyrat icon = 'modular_skyrat/master_files/icons/obj/clothing/under/medical.dmi' diff --git a/modular_skyrat/master_files/code/modules/clothing/under/jobs/rnd.dm b/modular_skyrat/master_files/code/modules/clothing/under/jobs/rnd.dm index bbe9d1cdd5f..ad1be77d31c 100644 --- a/modular_skyrat/master_files/code/modules/clothing/under/jobs/rnd.dm +++ b/modular_skyrat/master_files/code/modules/clothing/under/jobs/rnd.dm @@ -1,5 +1,6 @@ /obj/item/clothing/under/rank/rnd worn_icon_digi = 'modular_skyrat/master_files/icons/mob/clothing/under/rnd_digi.dmi' // Anything that was in the rnd.dmi, should be in the rnd_digi.dmi + supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION /obj/item/clothing/under/rank/rnd/scientist/skyrat icon = 'modular_skyrat/master_files/icons/obj/clothing/under/rnd.dmi' diff --git a/modular_skyrat/master_files/code/modules/clothing/under/jobs/security.dm b/modular_skyrat/master_files/code/modules/clothing/under/jobs/security.dm index 0440024d651..f044e971dfa 100644 --- a/modular_skyrat/master_files/code/modules/clothing/under/jobs/security.dm +++ b/modular_skyrat/master_files/code/modules/clothing/under/jobs/security.dm @@ -1,5 +1,6 @@ /obj/item/clothing/under/rank/security worn_icon_digi = 'modular_skyrat/master_files/icons/mob/clothing/under/security_digi.dmi' + supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION /obj/item/clothing/under/rank/security/skyrat icon = 'modular_skyrat/master_files/icons/obj/clothing/under/security.dmi' diff --git a/modular_skyrat/modules/salon/code/clothing.dm b/modular_skyrat/modules/salon/code/clothing.dm index 85b9e483756..2e9d760f466 100644 --- a/modular_skyrat/modules/salon/code/clothing.dm +++ b/modular_skyrat/modules/salon/code/clothing.dm @@ -4,3 +4,5 @@ icon = 'modular_skyrat/master_files/icons/obj/clothing/under/civilian.dmi' worn_icon = 'modular_skyrat/master_files/icons/mob/clothing/under/civilian.dmi' icon_state = "barber" + worn_icon_digi = 'modular_skyrat/master_files/icons/mob/clothing/under/civilian_digi.dmi' + supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION diff --git a/modular_zubbers/code/modules/security/secmed/secmed_clothes.dm b/modular_zubbers/code/modules/security/secmed/secmed_clothes.dm index bbe1dc0a369..22948eb2d52 100644 --- a/modular_zubbers/code/modules/security/secmed/secmed_clothes.dm +++ b/modular_zubbers/code/modules/security/secmed/secmed_clothes.dm @@ -79,6 +79,7 @@ icon = 'modular_zubbers/icons/obj/clothing/under/security.dmi' worn_icon = 'modular_zubbers/icons/mob/clothing/under/security.dmi' icon_state = "security_medic_turtleneck" + worn_icon_digi = 'modular_zubbers/icons/mob/clothing/under/security_digi.dmi' supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION /obj/item/clothing/under/rank/security/peacekeeper/security_medic/skirt