Package buildcraft.core.robots

Examples of buildcraft.core.robots.AIRobotBreak


        if (robot.getRegistry().take(new ResourceIdBlock(indexStored), robot)) {
          startDelegateAI(new AIRobotGotoBlock(robot, ((AIRobotSearchBlock) ai).path));
        }
      }
    } else if (ai instanceof AIRobotGotoBlock) {
      startDelegateAI(new AIRobotBreak(robot, indexStored));
    } else if (ai instanceof AIRobotBreak) {
      robot.getRegistry().release(new ResourceIdBlock(indexStored));
      indexStored = null;
    }
  }
View Full Code Here

TOP

Related Classes of buildcraft.core.robots.AIRobotBreak

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.