Page MenuHomeFeedback Tracker

Experimental: Bandannas cannot turn from untied to a facemask or a headwrap
New, NormalPublic

Description

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

DrDeSync created this task.May 12 2019, 3:21 PM

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);
	}

}
DrDeSync changed Severity from Tweak to Major.May 15 2019, 5:08 PM
Noktur added a subscriber: Noktur.Jun 28 2019, 7:36 PM

Still reproducible in Stable version: "1.04.151979"