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.
This commit is contained in:
Casper3667
2025-09-15 14:08:30 +02:00
committed by GitHub
parent b4f8b99444
commit 83cd8a4d25
2 changed files with 16 additions and 0 deletions
@@ -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
+6
View File
@@ -0,0 +1,6 @@
author: TheGreyWolf
delete-after: True
changes:
- rscadd: "Snoods now hide the wearer's face when pulled up."