Package net.minecraft.entity.monster

Examples of net.minecraft.entity.monster.EntityGiantZombie


    {
      ((EntityAgeable)entity).setGrowingAge(0);
    }
    else
    {
      EntityGiantZombie e = new EntityGiantZombie(world);
      e.setLocationAndAngles(entity.posX, entity.posY, entity.posZ, entity.rotationYaw, entity.rotationPitch);
      world.spawnEntityInWorld(e);
      entity.setDead();
    }
    return true;
  }
View Full Code Here

TOP

Related Classes of net.minecraft.entity.monster.EntityGiantZombie

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.