Updated max energy storage for several tools. Closes #1219

This commit is contained in:
drcrazy 2017-09-01 16:19:59 +03:00
parent ace5813745
commit 07b1724e24
5 changed files with 14 additions and 12 deletions

View file

@ -38,10 +38,10 @@ import techreborn.init.ModBlocks;
public class TileHighVoltageSU extends TileEnergyStorage implements IContainerProvider {
/**
* MFSU should store 16M FE with 2048 FE/t I/O
* MFSU should store 40M FE with 2048 FE/t I/O
*/
public TileHighVoltageSU() {
super("HIGH_VOLTAGE_SU", 2, ModBlocks.HIGH_VOLTAGE_SU, EnumPowerTier.HIGH, 512, 512, 4000000);
super("HIGH_VOLTAGE_SU", 2, ModBlocks.HIGH_VOLTAGE_SU, EnumPowerTier.HIGH, 512, 512, 10000000);
}
@Override