Splash potions now throwable! (#1401)

This commit is contained in:
AEon - Tobias 2018-08-18 03:08:04 +02:00 committed by Nick Ignoffo
parent 98e474b287
commit 92e3333701

View file

@ -24,6 +24,7 @@ import net.minecraft.init.Items;
import net.minecraft.inventory.EntityEquipmentSlot;
import net.minecraft.item.EnumAction;
import net.minecraft.item.ItemArrow;
import net.minecraft.item.ItemSplashPotion;
import net.minecraft.item.ItemStack;
import net.minecraft.util.EnumHand;
import net.minecraft.world.World;
@ -160,13 +161,12 @@ public class LivingArmourHandler
if (event.getItemStack().getItemUseAction() == EnumAction.DRINK)
{
ItemStack drinkStack = event.getItemStack();
if(!(drinkStack.getItem() instanceof ItemSplashPotion)) {
LivingArmourUpgrade upgrade = ItemLivingArmour.getUpgrade(BloodMagic.MODID + ".upgrade.quenched", chestStack);
//TODO: See if the item is a splash potion? Those should be usable.
LivingArmourUpgrade upgrade = ItemLivingArmour.getUpgrade(BloodMagic.MODID + ".upgrade.quenched", chestStack);
if (upgrade instanceof LivingArmourUpgradeQuenched)
{
event.setCanceled(true);
if (upgrade instanceof LivingArmourUpgradeQuenched) {
event.setCanceled(true);
}
}
}
}