Package buildcraft.factory

Examples of buildcraft.factory.TileQuarry


    public void ticketsLoaded(List<Ticket> tickets, World world) {
      for (Ticket ticket : tickets) {
        int quarryX = ticket.getModData().getInteger("quarryX");
        int quarryY = ticket.getModData().getInteger("quarryY");
        int quarryZ = ticket.getModData().getInteger("quarryZ");
        TileQuarry tq = (TileQuarry) world.getTileEntity(quarryX, quarryY, quarryZ);
        tq.forceChunkLoading(ticket);

      }
    }
View Full Code Here

TOP

Related Classes of buildcraft.factory.TileQuarry

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.