Added PlayerBrewedPotionEvent (#3187)

This commit is contained in:
MrIbby 2016-08-13 13:38:45 -07:00 committed by LexManos
parent 03c8852961
commit d17c025557
3 changed files with 61 additions and 1 deletions

View File

@ -9,7 +9,15 @@
}
public int func_75219_a()
@@ -245,8 +245,7 @@
@@ -231,6 +231,7 @@
{
if (PotionUtils.func_185191_c(p_82870_2_) != PotionTypes.field_185230_b)
{
+ net.minecraftforge.event.ForgeEventFactory.onPlayerBrewedPotion(p_82870_1_, p_82870_2_);
this.field_75244_a.func_71029_a(AchievementList.field_187970_B);
}
@@ -245,8 +246,7 @@
}
else
{

View File

@ -67,6 +67,7 @@ import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.common.capabilities.CapabilityDispatcher;
import net.minecraftforge.common.capabilities.ICapabilityProvider;
import net.minecraftforge.common.util.BlockSnapshot;
import net.minecraftforge.event.brewing.PlayerBrewedPotionEvent;
import net.minecraftforge.event.brewing.PotionBrewEvent;
import net.minecraftforge.event.entity.EntityEvent;
import net.minecraftforge.event.entity.EntityMountEvent;
@ -488,6 +489,11 @@ public class ForgeEventFactory
{
MinecraftForge.EVENT_BUS.post(new PotionBrewEvent.Post(brewingItemStacks));
}
public static void onPlayerBrewedPotion(EntityPlayer player, ItemStack stack)
{
MinecraftForge.EVENT_BUS.post(new PlayerBrewedPotionEvent(player, stack));
}
public static boolean renderFireOverlay(EntityPlayer player, float renderPartialTicks)
{

View File

@ -0,0 +1,46 @@
/*
* Minecraft Forge
* Copyright (c) 2016.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation version 2.1
* of the License.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package net.minecraftforge.event.brewing;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraftforge.event.entity.player.PlayerEvent;
/**
* This event is called when a player picks up a potion from a brewing stand.
*/
public class PlayerBrewedPotionEvent extends PlayerEvent
{
private final ItemStack stack;
public PlayerBrewedPotionEvent(EntityPlayer player, ItemStack stack)
{
super(player);
this.stack = stack;
}
/**
* The ItemStack of the potion.
*/
public ItemStack getStack()
{
return stack;
}
}