Skip to content

OnPlanterBoxFertilize

Usage

  • Return a non-null value to override default behavior

Example Autogenerated

csharp
private void OnPlanterBoxFertilize( PlanterBox instance )
{
    Puts( "OnPlanterBoxFertilize works!" );
}

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.