The Great Renamening of 2020
This commit is contained in:
+6
-6
@@ -83,8 +83,8 @@ import appeng.crafting.CraftingWatcher;
|
||||
import appeng.me.cluster.implementations.CraftingCPUCluster;
|
||||
import appeng.me.helpers.BaseActionSource;
|
||||
import appeng.me.helpers.GenericInterestManager;
|
||||
import appeng.tile.crafting.TileCraftingStorageTile;
|
||||
import appeng.tile.crafting.TileCraftingTile;
|
||||
import appeng.tile.crafting.CraftingStorageTileEntity;
|
||||
import appeng.tile.crafting.CraftingTileEntity;
|
||||
|
||||
public class CraftingGridCache
|
||||
implements ICraftingGrid, ICraftingProviderHelper, ICellProvider, IMEInventoryHandler<IAEItemStack> {
|
||||
@@ -163,7 +163,7 @@ public class CraftingGridCache
|
||||
}
|
||||
}
|
||||
|
||||
if (machine instanceof TileCraftingTile) {
|
||||
if (machine instanceof CraftingTileEntity) {
|
||||
this.updateList = true;
|
||||
}
|
||||
|
||||
@@ -190,7 +190,7 @@ public class CraftingGridCache
|
||||
}
|
||||
}
|
||||
|
||||
if (machine instanceof TileCraftingTile) {
|
||||
if (machine instanceof CraftingTileEntity) {
|
||||
this.updateList = true;
|
||||
}
|
||||
|
||||
@@ -264,8 +264,8 @@ public class CraftingGridCache
|
||||
private void updateCPUClusters() {
|
||||
this.craftingCPUClusters.clear();
|
||||
|
||||
for (final IGridNode cst : this.grid.getMachines(TileCraftingStorageTile.class)) {
|
||||
final TileCraftingStorageTile tile = (TileCraftingStorageTile) cst.getMachine();
|
||||
for (final IGridNode cst : this.grid.getMachines(CraftingStorageTileEntity.class)) {
|
||||
final CraftingStorageTileEntity tile = (CraftingStorageTileEntity) cst.getMachine();
|
||||
final CraftingCPUCluster cluster = (CraftingCPUCluster) tile.getCluster();
|
||||
if (cluster != null) {
|
||||
this.craftingCPUClusters.add(cluster);
|
||||
|
||||
Reference in New Issue
Block a user