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
//---
{
pendingItemId = recipe.ProducedItem.itemid;
StopMixing();
ConsumeInventory(recipe, quantity);
CreateRecipeItems(recipe, quantity);
Interface.CallHook("OnMixingTableFinished", this, MixStartingPlayer, recipe, quantity);
}