Adjust MFE and MFSU values, closes #777

This commit is contained in:
modmuss50 2016-11-05 17:09:57 +00:00
parent 9767173152
commit 51331b77e7
No known key found for this signature in database
GPG key ID: 203A5ED4D3E48BEA
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ import techreborn.init.ModBlocks;
public class TileMFE extends TileEnergyStorage {
public TileMFE() {
super("MFE", 2, ModBlocks.mfe, EnumPowerTier.MEDIUM, 512, 512, 4000000);
super("MFE", 2, ModBlocks.mfe, EnumPowerTier.MEDIUM, 512, 512, 600000);
}
}

View file

@ -9,6 +9,6 @@ import techreborn.init.ModBlocks;
public class TileMFSU extends TileEnergyStorage {
public TileMFSU() {
super("MFSU", 2, ModBlocks.mfsu, EnumPowerTier.HIGH, 2048, 2048, 40000000);
super("MFSU", 2, ModBlocks.mfsu, EnumPowerTier.HIGH, 2048, 2048, 1000000);
}
}