Ejemplo n.º 1
0
 public static void updateAI(EntityLiving entity) {
   updateSenses(entity);
   entity.getNavigation().e();
   entity.getControllerMove().c();
   entity.getControllerLook().a();
   entity.getControllerJump().b();
 }
Ejemplo n.º 2
0
 public static void look(EntityLiving handle, Entity target) {
   handle.getControllerLook().a(target, 10.0F, handle.bs());
 }