Update to work with major RC changes.

This commit is contained in:
modmuss50 2017-04-11 19:12:32 +01:00
parent 539c5d0091
commit 1ccd192790
No known key found for this signature in database
GPG key ID: 773D17BE8BF49C82
42 changed files with 160 additions and 160 deletions

View file

@ -64,7 +64,7 @@ public class TileEntityFusionController extends TilePowerAcceptor implements IIn
}
@Override
public double getMaxPower() {
public double getBaseMaxPower() {
return 100000000;
}
@ -79,7 +79,7 @@ public class TileEntityFusionController extends TilePowerAcceptor implements IIn
}
@Override
public double getMaxOutput() {
public double getBaseMaxOutput() {
if (!this.hasStartedCrafting) {
return 0;
}
@ -87,7 +87,7 @@ public class TileEntityFusionController extends TilePowerAcceptor implements IIn
}
@Override
public double getMaxInput() {
public double getBaseMaxInput() {
if (this.hasStartedCrafting) {
return 0;
}
@ -95,7 +95,7 @@ public class TileEntityFusionController extends TilePowerAcceptor implements IIn
}
@Override
public EnumPowerTier getTier() {
public EnumPowerTier getBaseTier() {
return EnumPowerTier.EXTREME;
}