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

View file

@ -46,8 +46,6 @@ public class TileChunkLoader extends TilePowerAcceptor implements IWrenchable, I
public static int maxInput = 32;
@ConfigRegistry(config = "machines", category = "chunk_loader", key = "ChunkLoaderMaxEnergy", comment = "Chunk Loader Max Energy (Value in EU)")
public static int maxEnergy = 10000;
@ConfigRegistry(config = "machines", category = "chunk_loader", key = "ChunkLoaderTier", comment = "Chunk Loader Tier")
public static int tier = 1;
// @ConfigRegistry(config = "machines", category = "chunk_loader", key = "ChunkLoaderWrenchDropRate", comment = "Chunk Loader Wrench Drop Rate")
public static float wrenchDropRate = 1.0F;
@ -57,7 +55,7 @@ public class TileChunkLoader extends TilePowerAcceptor implements IWrenchable, I
public int tickTime;
public TileChunkLoader() {
super(tier);
super();
}
@Override

View file

@ -59,7 +59,7 @@ public class TilePump extends TilePowerAcceptor {
public Tank tank = new Tank("TilePump", 10000, this);
public TilePump() {
super(1);
super();
}
@Override

View file

@ -50,7 +50,7 @@ public class TileHeatGenerator extends TilePowerAcceptor implements IWrenchable
private long lastOutput = 0;
public TileHeatGenerator() {
super(1);
super();
}
@Override

View file

@ -54,7 +54,7 @@ public class TileLightningRod extends TilePowerAcceptor implements IWrenchable {
private int onStatusHoldTicks = -1;
public TileLightningRod() {
super(2);
super();
}
@Override

View file

@ -57,7 +57,7 @@ public class TileSolarPanel extends TilePowerAcceptor implements IWrenchable {
int powerToAdd;
public TileSolarPanel() {
super(1);
super();
}
@Override

View file

@ -52,7 +52,7 @@ public class TileWaterMill extends TilePowerAcceptor implements IWrenchable {
int waterblocks = 0;
public TileWaterMill() {
super(1);
super();
}
@Override

View file

@ -53,7 +53,7 @@ public class TileWindMill extends TilePowerAcceptor implements IWrenchable {
int basePower = 16;
public TileWindMill() {
super(2);
super();
}
@Override

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);

View file

@ -48,7 +48,7 @@ public class TileCompressor extends TilePowerAcceptor implements IWrenchable, II
public int capacity = 1000;
public TileCompressor() {
super(1);
super();
final int[] inputs = new int[] { 0 };
final int[] outputs = new int[] { 1 };
this.crafter = new RecipeCrafter(Reference.compressorRecipe, this, 2, 1, this.inventory, inputs, outputs);

View file

@ -53,7 +53,7 @@ public class TileElectricFurnace extends TilePowerAcceptor
int output = 1;
public TileElectricFurnace() {
super(1);
super();
}
public int gaugeProgressScaled(final int scale) {

View file

@ -50,7 +50,7 @@ public class TileExtractor extends TilePowerAcceptor
public int capacity = 1000;
public TileExtractor() {
super(1);
super();
final int[] inputs = new int[1];
inputs[0] = 0;
final int[] outputs = new int[1];

View file

@ -50,7 +50,7 @@ public class TileGrinder extends TilePowerAcceptor
public int capacity = 1000;
public TileGrinder() {
super(1);
super();
final int[] inputs = new int[1];
inputs[0] = 0;
final int[] outputs = new int[1];

View file

@ -50,7 +50,7 @@ public class TileRecycler extends TilePowerAcceptor implements IWrenchable, IInv
private int progress;
public TileRecycler() {
super(1);
super();
}
public int gaugeProgressScaled(final int scale) {