From 83cd8a4d25fc37a7fd97acc8ef6f7663dad8ed8a Mon Sep 17 00:00:00 2001 From: Casper3667 <8396443+Casper3667@users.noreply.github.com> Date: Mon, 15 Sep 2025 14:08:30 +0200 Subject: [PATCH] Make snoods able to hide ones face (#21301) The snood can now hide ones face when worn up, and doesn't hide it when pulled down. --- 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 1957ac9194d..03e3ef9a6b8 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 00000000000..82344b18d8b --- /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."