Made the double furnace be able to accept more energy

This commit is contained in:
Ellpeck 2016-12-01 18:42:24 +01:00
parent 11840ad2b9
commit 2219014fa2

View file

@ -31,7 +31,7 @@ public class TileEntityFurnaceDouble extends TileEntityInventoryBase implements
public static final int SLOT_OUTPUT_2 = 3; public static final int SLOT_OUTPUT_2 = 3;
public static final int ENERGY_USE = 25; public static final int ENERGY_USE = 25;
private static final int SMELT_TIME = 80; private static final int SMELT_TIME = 80;
public final CustomEnergyStorage storage = new CustomEnergyStorage(30000, 80, 0); public final CustomEnergyStorage storage = new CustomEnergyStorage(30000, 150, 0);
public int firstSmeltTime; public int firstSmeltTime;
public int secondSmeltTime; public int secondSmeltTime;
public boolean isAutoSplit; public boolean isAutoSplit;