Remove old int tiers

This commit is contained in:
modmuss50 2017-06-13 20:28:50 +01:00
parent b1721890b5
commit cb0303d82f
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA
14 changed files with 14 additions and 16 deletions
src/main/java/techreborn/tiles/multiblock

View file

@ -60,7 +60,7 @@ public class TileIndustrialSawmill extends TilePowerAcceptor
public MultiblockChecker multiblockChecker;
public TileIndustrialSawmill() {
super(2);
super();
}
@Override

View file

@ -48,7 +48,7 @@ public class TileVacuumFreezer extends TilePowerAcceptor
public RecipeCrafter crafter;
public TileVacuumFreezer() {
super(2);
super();
final int[] inputs = new int[] { 0 };
final int[] outputs = new int[] { 1 };
this.crafter = new RecipeCrafter(Reference.vacuumFreezerRecipe, this, 2, 1, this.inventory, inputs, outputs);