From e39ffcfebcd003ea7665c7e70dfcefa2994c28f1 Mon Sep 17 00:00:00 2001 From: Jureiia <53306684+Jureiia@users.noreply.github.com> Date: Tue, 11 Oct 2022 18:05:56 +0100 Subject: [PATCH] [MODULAR] Allows taurs to wear more dresses and skirts (#16737) Allows taurs to wear more dresses and skirts Adds the do not crop on taur flag to a lot of skirts and dresses --- .../master_files/code/modules/clothing/under/costume.dm | 3 +++ .../code/modules/clothing/under/jobs/civilian/suits.dm | 2 ++ .../master_files/code/modules/clothing/under/skirts_dresses.dm | 1 + .../modules/customization/modules/clothing/under/sweaters.dm | 1 + 4 files changed, 7 insertions(+) diff --git a/modular_skyrat/master_files/code/modules/clothing/under/costume.dm b/modular_skyrat/master_files/code/modules/clothing/under/costume.dm index ddd91e46c7b..eeeab1dd185 100644 --- a/modular_skyrat/master_files/code/modules/clothing/under/costume.dm +++ b/modular_skyrat/master_files/code/modules/clothing/under/costume.dm @@ -67,6 +67,7 @@ greyscale_config_worn = /datum/greyscale_config/qipao/worn greyscale_config_worn_digi = /datum/greyscale_config/qipao/worn/digi flags_1 = IS_PLAYER_COLORABLE_1 + gets_cropped_on_taurs = FALSE /obj/item/clothing/under/costume/skyrat/cheongsam name = "cheongsam" @@ -79,6 +80,7 @@ greyscale_config_worn = /datum/greyscale_config/cheongsam/worn greyscale_config_worn_digi = /datum/greyscale_config/cheongsam/worn/digi flags_1 = IS_PLAYER_COLORABLE_1 + gets_cropped_on_taurs = FALSE /obj/item/clothing/under/costume/skyrat/yukata name = "yukata" @@ -90,6 +92,7 @@ greyscale_config_worn = /datum/greyscale_config/yukata/worn greyscale_config_worn_digi = /datum/greyscale_config/yukata/worn/digi flags_1 = IS_PLAYER_COLORABLE_1 + gets_cropped_on_taurs = FALSE /obj/item/clothing/under/costume/skyrat/kamishimo name = "kamishimo" 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 631f1993d47..1ca42cc6129 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 @@ -17,6 +17,7 @@ desc = "A clean white shirt with a tight-fitting black pencilskirt." icon_state = "black_pencil" female_sprite_flags = FEMALE_UNIFORM_TOP_ONLY + gets_cropped_on_taurs = FALSE /obj/item/clothing/under/suit/skyrat/pencil/black_really name = "executive pencilskirt" @@ -72,6 +73,7 @@ body_parts_covered = CHEST|GROIN|ARMS female_sprite_flags = FEMALE_UNIFORM_TOP_ONLY|FEMALE_UNIFORM_NO_BREASTS supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION_NO_NEW_ICON + gets_cropped_on_taurs = FALSE /obj/item/clothing/under/suit/skyrat/inferno name = "inferno suit" diff --git a/modular_skyrat/master_files/code/modules/clothing/under/skirts_dresses.dm b/modular_skyrat/master_files/code/modules/clothing/under/skirts_dresses.dm index b895f2f12ad..81fe63f3943 100644 --- a/modular_skyrat/master_files/code/modules/clothing/under/skirts_dresses.dm +++ b/modular_skyrat/master_files/code/modules/clothing/under/skirts_dresses.dm @@ -5,6 +5,7 @@ female_sprite_flags = FEMALE_UNIFORM_TOP_ONLY //For reference - We dont want to cut a random hole in dresses supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION_NO_NEW_ICON //For reference - keep in mind some dresses will need adjusted for digi thighs - hence the link below worn_icon_digi = SKIRTS_DRESSES_DIGIFILE + gets_cropped_on_taurs = FALSE //God bless the skirt being a subtype of the dress, only need one worn_digi_icon definition /obj/item/clothing/under/dress/skyrat diff --git a/modular_skyrat/modules/customization/modules/clothing/under/sweaters.dm b/modular_skyrat/modules/customization/modules/clothing/under/sweaters.dm index 00a1b4caacb..a48d503b379 100644 --- a/modular_skyrat/modules/customization/modules/clothing/under/sweaters.dm +++ b/modular_skyrat/modules/customization/modules/clothing/under/sweaters.dm @@ -9,6 +9,7 @@ female_sprite_flags = FEMALE_UNIFORM_TOP_ONLY can_adjust = TRUE flags_1 = IS_PLAYER_COLORABLE_1 + gets_cropped_on_taurs = FALSE /obj/item/clothing/under/sweater/black name = "black cableknit sweater"