Description
Description
Details
Details
- Severity
- Major
- Resolution
- Open
- Reproducibility
- Always
- Operating System
- Windows 10
- Category
- Ingame UI
Steps To Reproduce
Spawn a bandanna
Cannot transform it into a wearable object
Event Timeline
Comment Actions
Can confirm. Fixed it in the DayzUnderground mod:
modded class Bandana_ColorBase extends ItemBase { override void SetActions() { super.SetActions(); AddAction(ActionFoldBandanaToMask); AddAction(ActionFoldBandanaToHead); } } modded class BandanaMask_ColorBase extends Clothing { override void SetActions() { super.SetActions(); AddAction(ActionUnfoldBandana); } } class BandanaHead_ColorBase extends Clothing { override void SetActions() { super.SetActions(); AddAction(ActionUnfoldBandana); } }