Skip to content

OnPlanterBoxFertilize

Usage

  • Return a non-null value to override default behavior

Example Autogenerated

csharp
private object OnPlanterBoxFertilize( PlanterBox instance )
{
    Puts( "OnPlanterBoxFertilize works!" );
    return null;
}

Location

  • PlanterBox::FertilizeGrowables()
csharp
public void FertilizeGrowables()
{
	if (Interface.CallHook("OnPlanterBoxFertilize", this) != null)
	{
		return;
	}
	int num = this.GetFertilizerCount();
	if (num <= 0)
//---

Released under the MIT License.