burnTimeModifier only needs show two decimal places

This commit is contained in:
TfT_02 2013-01-26 02:13:02 +01:00
parent 3e04bacf73
commit 4692a461eb
2 changed files with 2 additions and 1 deletions

View File

@ -26,6 +26,7 @@ public abstract class SkillCommand implements CommandExecutor {
protected boolean hasEndurance;
protected DecimalFormat percent = new DecimalFormat("##0.00%");
protected DecimalFormat decimal = new DecimalFormat("##0.00");
public SkillCommand(SkillType skill) {
this.skill = skill;

View File

@ -25,7 +25,7 @@ public class SmeltingCommand extends SkillCommand {
@Override
protected void dataCalculations() {
//FUEL EFFICIENCY
burnTimeModifier = String.valueOf(1 + ((skillValue / Smelting.burnModifierMaxLevel) * Smelting.burnTimeMultiplier));
burnTimeModifier = decimal.format(1 + ((skillValue / Smelting.burnModifierMaxLevel) * Smelting.burnTimeMultiplier));
//SECOND SMELT
String[] secondSmeltStrings = calculateAbilityDisplayValues(Smelting.secondSmeltMaxLevel, Smelting.secondSmeltMaxChance);