Package net.minecraft.entity.item

Examples of net.minecraft.entity.item.EntityEnderPearl


        }
        else if (par5ItemStack.getItem() == Items.ender_pearl)
        {
            if (triggerer instanceof EntityLivingBase)
            {
                entity = new EntityEnderPearl(par1World, (EntityLivingBase) triggerer);
                ((EntityEnderPearl) entity).setPosition(par2, par3, par4);
            }
            else
            {
                entity = new EntityEnderPearl(par1World, par2, par3, par4);
            }
        }

        if (entity == null)
        {
View Full Code Here

TOP

Related Classes of net.minecraft.entity.item.EntityEnderPearl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.