Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions code/modules/clothing/masks/miscellaneous.dm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
6 changes: 6 additions & 0 deletions html/changelogs/snoodhiding.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
author: TheGreyWolf

delete-after: True

changes:
- rscadd: "Snoods now hide the wearer's face when pulled up."
Loading