2013-03-22 19:05:23 +00:00
|
|
|
package net.minecraftforge.event.brewing;
|
|
|
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraftforge.event.Event;
|
|
|
|
|
2013-03-23 20:56:01 +00:00
|
|
|
public class PotionBrewedEvent extends Event
|
|
|
|
{
|
2013-03-22 19:05:23 +00:00
|
|
|
/**
|
|
|
|
* The brewing stacks in the brewing stand. Each index has the possibility to be null, so make sure you check.
|
|
|
|
*/
|
|
|
|
public ItemStack[] brewingStacks;
|
2013-03-23 20:56:01 +00:00
|
|
|
public PotionBrewedEvent(ItemStack[] brewingStacks)
|
|
|
|
{
|
2013-03-22 19:05:23 +00:00
|
|
|
this.brewingStacks = brewingStacks;
|
|
|
|
}
|
|
|
|
}
|