Package appeng.tile.crafting

Examples of appeng.tile.crafting.TileCraftingStorageTile


  {
    this.craftingCPUClusters.clear();

    for (IGridNode cst : this.grid.getMachines( TileCraftingStorageTile.class ))
    {
      TileCraftingStorageTile tile = (TileCraftingStorageTile) cst.getMachine();
      CraftingCPUCluster cluster = (CraftingCPUCluster) tile.getCluster();
      if ( cluster != null )
      {
        this.craftingCPUClusters.add( cluster );

        if ( cluster.myLastLink != null )
View Full Code Here

TOP

Related Classes of appeng.tile.crafting.TileCraftingStorageTile

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.