Examples of AIRobotDeliverRequested


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

Examples of buildcraft.core.robots.AIRobotDeliverRequested

      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
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.