From 2f199592ee84637d2d44b7c64b8d0ccc0b4959b8 Mon Sep 17 00:00:00 2001 From: HometownFunky <109109322+HometownFunky@users.noreply.github.com> Date: Tue, 26 May 2026 21:35:57 +0200 Subject: [PATCH] Allows Lycans to wear Neck Items (#5679) ## About The Pull Request It's a simple one line change that allows the Lycan species to wear items on the neck. This also means that neck items won't be dropped upon transformation. A few things this PR also enables for clarity: 1. You can wear any piece of neck clothing, which means cloaks and collars (even the NSFW ones) are now kept on you if you transform into an Lycan. 2. ~~Allows Acolyte Lycans to be anti-magic collar'd, making it so the collar is still on post-transformation...~~ Cursekin transformation is inhibited by the collar. 3. ...and also allows Acolyte Lycans to wear a neck focus. ## Why It's Good For The Game Customization, and NSFW shenanigans. When it comes to Acolytes it's also a balance question but I figured that the base Lycan isn't really that strong on its own, so them having access to a focus ~~while also patching the issue of using the TF button to just yeet your collar for free as a cursekin~~ isn't that much of a powercreep. ## Proof Of Testing
Screenshots/Videos stays on lycan The item stays on after the transformation.
## Changelog :cl: balance: lycans can wear neck items /:cl: --- .../code/modules/customization/species/lycans/_lycan_species.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modular_zubbers/code/modules/customization/species/lycans/_lycan_species.dm b/modular_zubbers/code/modules/customization/species/lycans/_lycan_species.dm index 8c73712554c..6be83a88271 100644 --- a/modular_zubbers/code/modules/customization/species/lycans/_lycan_species.dm +++ b/modular_zubbers/code/modules/customization/species/lycans/_lycan_species.dm @@ -48,7 +48,7 @@ TRAIT_FAST_METABOLISM, ) - no_equip_flags = ITEM_SLOT_ICLOTHING | ITEM_SLOT_OCLOTHING | ITEM_SLOT_GLOVES | ITEM_SLOT_FEET | ITEM_SLOT_SUITSTORE | ITEM_SLOT_BACK | ITEM_SLOT_BELT | ITEM_SLOT_EARS | ITEM_SLOT_HEAD | ITEM_SLOT_MASK | ITEM_SLOT_EYES | ITEM_SLOT_BACK | ITEM_SLOT_NECK + no_equip_flags = ITEM_SLOT_ICLOTHING | ITEM_SLOT_OCLOTHING | ITEM_SLOT_GLOVES | ITEM_SLOT_FEET | ITEM_SLOT_SUITSTORE | ITEM_SLOT_BACK | ITEM_SLOT_BELT | ITEM_SLOT_EARS | ITEM_SLOT_HEAD | ITEM_SLOT_MASK | ITEM_SLOT_EYES | ITEM_SLOT_BACK always_customizable = TRUE sort_bottom = TRUE