300f471c57
Fix up code for minecraftforge style. Clean up patches. Conflicts: common/forge_at.cfg patches/minecraft/net/minecraft/block/Block.java.patch
16 lines
451 B
Java
16 lines
451 B
Java
package net.minecraftforge.event.brewing;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraftforge.event.Event;
|
|
|
|
public class PotionBrewedEvent extends Event
|
|
{
|
|
/**
|
|
* The brewing stacks in the brewing stand. Each index has the possibility to be null, so make sure you check.
|
|
*/
|
|
public ItemStack[] brewingStacks;
|
|
public PotionBrewedEvent(ItemStack[] brewingStacks)
|
|
{
|
|
this.brewingStacks = brewingStacks;
|
|
}
|
|
}
|