Package buildcraft.core.robots

Examples of buildcraft.core.robots.AIRobotDeliverRequested


        robot.releaseResources();
        currentRequest = null;
        craftingBlacklist.add(order);
      } else {
        if (currentRequest != null) {
          startDelegateAI(new AIRobotDeliverRequested(robot, currentRequest));
        } else {
          robot.releaseResources();
          // The extra crafted items may make some crafting possible
          craftingBlacklist.clear();
        }
View Full Code Here


      if (!ai.success()) {
        deliveryBlacklist.add(currentRequest.stack);
        robot.releaseResources();
        currentRequest = null;
      } else {
        startDelegateAI(new AIRobotDeliverRequested(robot, currentRequest));
      }
    } else if (ai instanceof AIRobotDeliverRequested) {
      robot.releaseResources();
      currentRequest = null;
    }
View Full Code Here

TOP

Related Classes of buildcraft.core.robots.AIRobotDeliverRequested

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.