Package buildcraft.core.robots

Examples of buildcraft.core.robots.AIRobotSearchStackRequest


    } else {
      order = null;
    }

    if (order == null) {
      startDelegateAI(new AIRobotSearchStackRequest(robot, ActionRobotFilter.getGateFilter(robot
          .getLinkedStation()), craftingBlacklist));
      return;
    }

    IRecipe recipe = lookForWorkbenchRecipe(order);
View Full Code Here


      startDelegateAI(new AIRobotDisposeItems(robot));
      return;
    }

    if (currentRequest == null) {
      startDelegateAI(new AIRobotSearchStackRequest(robot, ActionRobotFilter.getGateFilter(robot
          .getLinkedStation()), deliveryBlacklist));
    } else {
      startDelegateAI(new AIRobotGotoStationAndLoad(robot, new ReqFilter(), robot.getZoneToWork()));
    }
  }
View Full Code Here

TOP

Related Classes of buildcraft.core.robots.AIRobotSearchStackRequest

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.