Examples of robotTaking()


Examples of buildcraft.core.robots.DockingStation.robotTaking()

    RobotRegistry registry = RobotRegistry.getRegistry(pipe.getWorld());

    for (ForgeDirection d : ForgeDirection.VALID_DIRECTIONS) {
      DockingStation station = pipe.container.getStation(d);

      if (station != null && station.robotTaking() != null) {
        EntityRobot robot = (EntityRobot) station.robotTaking();
        AIRobot ai = robot.getOverridingAI();

        if (ai != null) {
          continue;
View Full Code Here

Examples of buildcraft.core.robots.DockingStation.robotTaking()

    for (ForgeDirection d : ForgeDirection.VALID_DIRECTIONS) {
      DockingStation station = pipe.container.getStation(d);

      if (station != null && station.robotTaking() != null) {
        EntityRobot robot = (EntityRobot) station.robotTaking();
        AIRobot ai = robot.getOverridingAI();

        if (ai != null) {
          continue;
        }
View Full Code Here

Examples of buildcraft.core.robots.DockingStation.robotTaking()

    TileGenericPipe tile = pipe.container;

    for (ForgeDirection d : ForgeDirection.VALID_DIRECTIONS) {
      DockingStation station = tile.getStation(d);

      if (station != null && station.robotTaking() != null) {
        EntityRobot robot = (EntityRobot) station.robotTaking();

        if (robot.mainAI.getActiveAI() instanceof AIRobotSleep) {
          return true;
        }
View Full Code Here

Examples of buildcraft.core.robots.DockingStation.robotTaking()

    for (ForgeDirection d : ForgeDirection.VALID_DIRECTIONS) {
      DockingStation station = tile.getStation(d);

      if (station != null && station.robotTaking() != null) {
        EntityRobot robot = (EntityRobot) station.robotTaking();

        if (robot.mainAI.getActiveAI() instanceof AIRobotSleep) {
          return true;
        }
      }
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.