For some reason, I am unable to override the Edible_Base::ReplaceEdibleWithNew method.
I looked for a way to track when a player opens a can before the old item is replaced with the opened version but I was unable to override this specific method.
Description
Description
Details
Details
- Severity
- Block
- Resolution
- Open
- Reproducibility
- Always
- Operating System
- Windows 10 x64
- Category
- General
Steps To Reproduce
Minimal example code to reproduce the issue (4_World\Entities\ItemBase\Edible_Base.c):
modded class Edible_Base { override void ReplaceEdibleWithNew( string typeName ) { Print(ToString() + "::ReplaceEdibleWithNew - Type: " + GetType() + " | Replace with: " + typeName); super.ReplaceEdibleWithNew(typeName); } };