From 7dfb765db944f2aa54315a883f35aa4dae2d9f24 Mon Sep 17 00:00:00 2001 From: Twaticus <46540570+Twaticus@users.noreply.github.com> Date: Fri, 17 Oct 2025 16:33:07 -0400 Subject: [PATCH] Fixes Yukatas & Kimonos on Female Bodytypes (#93483) ## About The Pull Request Gives the yukatas and kimonos a female sprite flag to fix missing pixels. ## Why It's Good For The Game dress broke me fix unga ## Changelog :cl: fix: Females wearing either a yukata or kimono no longer have holes in their clothes. /:cl: --- code/modules/clothing/under/costume.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/clothing/under/costume.dm b/code/modules/clothing/under/costume.dm index dfa93c6862f..dd8a817c5c2 100644 --- a/code/modules/clothing/under/costume.dm +++ b/code/modules/clothing/under/costume.dm @@ -145,6 +145,7 @@ body_parts_covered = CHEST|GROIN|ARMS can_adjust = FALSE supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION_NO_NEW_ICON + female_sprite_flags = FEMALE_UNIFORM_TOP_ONLY /obj/item/clothing/under/costume/yukata/green name = "green yukata" @@ -164,6 +165,7 @@ body_parts_covered = CHEST|GROIN|ARMS can_adjust = FALSE supports_variations_flags = CLOTHING_DIGITIGRADE_VARIATION_NO_NEW_ICON + female_sprite_flags = FEMALE_UNIFORM_TOP_ONLY /obj/item/clothing/under/costume/kimono/red name = "red kimono"