Fixed #8
This commit is contained in:
parent
2f210f9e05
commit
13a900e7dd
1 changed files with 2 additions and 1 deletions
|
@ -135,12 +135,13 @@ public class EntityEventHandler
|
|||
public void entityInteract(EntityInteractEvent event)
|
||||
{
|
||||
ItemStack itemstack = event.entityPlayer.getCurrentEquippedItem();
|
||||
int itemDamage = itemstack.getItemDamage();
|
||||
Entity entity = event.target;
|
||||
EntityPlayer player = event.entityPlayer;
|
||||
|
||||
if (itemstack != null)
|
||||
{
|
||||
int itemDamage = itemstack.getItemDamage();
|
||||
|
||||
if (itemstack.itemID == Items.soulManipulator.get().itemID && itemstack.getItemDamage() == 2)
|
||||
{
|
||||
if (entity instanceof EntityEnderman)
|
||||
|
|
Loading…
Reference in a new issue