use of net.minecraft.entity.ai.EntityAIWander in project NetherEx by LogicTechCorp.
the class EntityBrute method initEntityAI.
@Override
protected void initEntityAI() {
tasks.addTask(0, new EntityAISwimming(this));
tasks.addTask(1, new EntityAIWatchClosest(this, EntityPlayer.class, 64.0F));
tasks.addTask(2, new EntityAIWander(this, 1.0D, 360));
targetTasks.addTask(0, new EntityAINearestAttackableTarget(this, EntityPlayer.class, true));
}
Aggregations