Skip to content

OnMixingTableFinished

Usage

  • No return behavior

Example Autogenerated

csharp
private void OnMixingTableFinished( MixingTable instance, BasePlayer MixStartingPlayer, Recipe recipe, int quantity )
{
    Puts( "OnMixingTableFinished works!" );
}

Location

  • MixingTable::ProduceItem(Recipe recipe, int quantity)
csharp
//---
{
	this.pendingItemId = recipe.ProducedItem.itemid;
	this.StopMixing();
	this.ConsumeInventory(recipe, quantity);
	this.CreateRecipeItems(recipe, quantity);
	Interface.CallHook("OnMixingTableFinished", this, this.MixStartingPlayer, recipe, quantity);
}

Released under the MIT License.