Height Change stopped by Item Equip Verifier

Cheo

Active member
Hello, here is a video showing some difficulties I have with Item Equip Verifier stopping the Height Change when another ability not allowing equipped items is activated.


I'm not sure how to handle Item Equip Verifier here, does it have a limitation or is there a way to not have it stop Height Change ? Thanks in advance.
 
The Item Equip Verifier ability should not actively prevent any abilities from starting. I will look into this next week and get back to you with the fix.
 
Yeah the issue is caused by ShouldStopActiveAbility in Item Equip Verifier, it can be commented out, I personally just added a bool to make it return false automatically.
 
I just looked into it and thanks for pointing me to ShouldStopActiveAbility. Instead of adding a bool you can change the return statement to:

Code:
            return m_StartingAbility.ShouldStopActiveAbility(activeAbility) || (m_StartingAbility.Index < activeAbility.Index && !activeAbility.IsConcurrent);
 
Top