OnFindBurnable
Usage
- Return a Item value to override default behavior
Example Autogenerated
csharp
private Item? OnFindBurnable( BaseOven instance )
{
Puts( "OnFindBurnable works!" );
return null;
}Location
- BaseOven::FindBurnable()
csharp
public Item FindBurnable()
{
object obj = Interface.CallHook("OnFindBurnable", this);
if (obj is Item)
{
return (Item)obj;
}
using (TimeWarning.New("FindBurnable"))
//---