Cleanup javadoc and make it compile correctly

This commit is contained in:
Nick 2015-12-01 21:14:26 -08:00
parent 427fb25424
commit c4e6f63ada
20 changed files with 44 additions and 47 deletions

View file

@ -321,8 +321,7 @@ public class TileAltar extends TileInventory implements IBloodAltar, ITickable,
this.dislocationMultiplier = 1;
this.accelerationUpgrades = 0;
return;
}
else if (!tier.equals(EnumAltarTier.ONE) && upgrade != null) {
} else if (!tier.equals(EnumAltarTier.ONE) && upgrade != null) {
this.isUpgraded = true;
this.consumptionMultiplier = (float) (0.20 * upgrade.getSpeedCount());
this.efficiencyMultiplier = (float) Math.pow(0.85, upgrade.getEfficiencyCount());