Long sticks should become ruined on disarming bear traps
Description
Description
Details
Details
- Severity
- Feature
- Resolution
- Open
- Reproducibility
- N/A
- Operating System
- Windows 10
- Category
- General
Steps To Reproduce
modded class ActionClapBearTrapWithThisItem : ActionSingleUseBase { override void OnExecuteServer(ActionData action_data) { super.OnExecuteServer(action_data); #ifdef SERVER if (action_data.m_MainItem) action_data.m_MainItem.SetHealth(0); // destroy item used to disarm the trap #endif } }