From ca0a01c831cb593cdd068ed01ac95a9f288ebf35 Mon Sep 17 00:00:00 2001 From: necromanceranne <40847847+necromanceranne@users.noreply.github.com> Date: Wed, 8 Jan 2025 05:10:52 +1100 Subject: [PATCH] Wigs have the hat stabilizer component, letting you put hats on your wig. 'The 'Wig' in the loadout is now correctly named 'Natural Wig'. (#88913) --- code/modules/clothing/head/wig.dm | 1 + code/modules/loadout/categories/heads.dm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/clothing/head/wig.dm b/code/modules/clothing/head/wig.dm index 10d69d2457c..8dc4ae6eb43 100644 --- a/code/modules/clothing/head/wig.dm +++ b/code/modules/clothing/head/wig.dm @@ -14,6 +14,7 @@ /obj/item/clothing/head/wig/Initialize(mapload) . = ..() update_appearance() + AddComponent(/datum/component/hat_stabilizer, loose_hat = FALSE) /obj/item/clothing/head/wig/equipped(mob/user, slot) . = ..() diff --git a/code/modules/loadout/categories/heads.dm b/code/modules/loadout/categories/heads.dm index 69ef68cfff1..e040ce2041e 100644 --- a/code/modules/loadout/categories/heads.dm +++ b/code/modules/loadout/categories/heads.dm @@ -153,6 +153,6 @@ item_path = /obj/item/food/grown/harebell /datum/loadout_item/head/wig - name = "Wig" + name = "Natural Wig" item_path = /obj/item/clothing/head/wig/natural additional_displayed_text = list("Hair Color")