Examples of IMob


Examples of net.minecraft.entity.monster.IMob

  public static boolean brainwashEntity(EntityLiving entity, List<IMob> mobs) {
    EntityLivingBase target = entity.getAttackTarget();
    boolean did = false;

    if(target == null || !(target instanceof IMob)) {
      IMob newTarget;
      do newTarget = mobs.get(entity.worldObj.rand.nextInt(mobs.size()));
      while(newTarget == entity);

      if(newTarget instanceof EntityLiving) {
        List<EntityAITaskEntry> entries = new ArrayList(entity.tasks.taskEntries);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.