Page MenuHomeFeedback Tracker

Modded Heavy Items can be jogged with in hands using F3 (Heart Emote)
Assigned, NormalPublic

Description

I realized the problem is because of the bool in ItemBase

	override bool IsHeavyBehaviour()
	{
		if (m_ItemBehaviour == 0)
		{	
			return true;
		}
		
		return false;
	}

heavyItem=1; exists inside of configs and makes it seem like itemBehaviour = 0 is redundant, when in reality itemBehaviour is more important. I would suggest checking for both variables to improve modding clarity.

Details

Severity
None
Resolution
Open
Reproducibility
N/A
Operating System
Windows 7
Category
General
Steps To Reproduce

Use heavyItem=1; instead of itemBehaviour = 0;

Event Timeline

designful created this task.Nov 8 2023, 9:21 PM
designful renamed this task from Heavy Items can be jogged with in hands using F3 (Heart Emote) to Modded Heavy Items can be jogged with in hands using F3 (Heart Emote).Nov 8 2023, 9:30 PM
designful updated the task description. (Show Details)
designful edited Steps To Reproduce. (Show Details)
designful edited Additional Information. (Show Details)
Geez changed the task status from New to Assigned.Nov 9 2023, 10:24 AM
sileed added a subscriber: sileed.Nov 9 2023, 4:29 PM
Yuki added a subscriber: Yuki.Nov 11 2023, 9:35 PM