From f66067eebe60fe0a59b7c66c25f62491c07dd68a Mon Sep 17 00:00:00 2001 From: Lilly-Lira Date: Wed, 10 Sep 2025 03:46:03 -0400 Subject: [PATCH] Taur Coat Fix (#18409) * Taur Coat Fix * Static to dynamic --- code/modules/clothing/clothing.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 7914a0064e3..add0614f7c8 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -1053,7 +1053,7 @@ var/image/standing = ..() if(taurized) //Special snowflake var on suits standing.pixel_x = -16 - standing.layer = BODY_LAYER + 17 // 17 is above tail layer, so will not be covered by taurbody. TAIL_UPPER_LAYER +1 + standing.layer = BODY_LAYER + TAIL_UPPER_LAYER + 1 return standing /obj/item/clothing/suit/apply_accessories(var/image/standing)