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,12 +161,10 @@ public class LivingArmourHandler
if (event.getItemStack().getItemUseAction() == EnumAction.DRINK)
{
ItemStack drinkStack = event.getItemStack();
//TODO: See if the item is a splash potion? Those should be usable.
if(!(drinkStack.getItem() instanceof ItemSplashPotion)) {
LivingArmourUpgrade upgrade = ItemLivingArmour.getUpgrade(BloodMagic.MODID + ".upgrade.quenched", chestStack);
if (upgrade instanceof LivingArmourUpgradeQuenched)
{
if (upgrade instanceof LivingArmourUpgradeQuenched) {
event.setCanceled(true);
}
}
@ -173,6 +172,7 @@ public class LivingArmourHandler
}
}
}
}
// Applies: Grim Reaper
@SubscribeEvent(priority = EventPriority.HIGHEST)