From eff6eca87d20f939db97cfa5a70ac2bb261b8099 Mon Sep 17 00:00:00 2001 From: TGW Date: Tue, 2 Sep 2025 16:52:10 +0200 Subject: [PATCH] make snoods able to hide ones face --- code/modules/clothing/masks/miscellaneous.dm | 10 ++++++++++ html/changelogs/snoodhiding.yml | 6 ++++++ 2 files changed, 16 insertions(+) create mode 100644 html/changelogs/snoodhiding.yml diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index 1957ac9194df..03e3ef9a6b84 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -194,6 +194,7 @@ item_state = "snood" contained_sprite = TRUE w_class = WEIGHT_CLASS_SMALL + flags_inv = HIDEFACE body_parts_covered = FACE item_flags = ITEM_FLAG_FLEXIBLE_MATERIAL gas_transfer_coefficient = 0.90 @@ -211,3 +212,12 @@ . = ..() if(icon_auto_adapt) build_and_apply_species_adaption() + +/obj/item/clothing/mask/snood/adjust_mask(mob/user, self) + . = ..() + if(hanging) + body_parts_covered &= ~FACE + flags_inv &= ~HIDEFACE + else + body_parts_covered |= FACE + flags_inv |= HIDEFACE diff --git a/html/changelogs/snoodhiding.yml b/html/changelogs/snoodhiding.yml new file mode 100644 index 000000000000..82344b18d8b2 --- /dev/null +++ b/html/changelogs/snoodhiding.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "Snoods now hide the wearer's face when pulled up."