diff --git a/main.js b/main.js index 65da0adb..5efbcc49 100644 --- a/main.js +++ b/main.js @@ -16090,7 +16090,7 @@ var Fluffy = { elem.innerHTML = 'The bonus modifier applied from "Pet Exp" on a Plagued or higher tier Staff. Currently ' + (1 + (getHeirloomBonus("Staff", "FluffyExp") / 100)).toFixed(2) + '.'; return; case "flufffocus": - elem.innerHTML = 'The bonus modifier from the Flufffocus Mastery (+25% exp per Prestige). ' + Fluffy.getName() + ' has evolved ' + this.getCurrentPrestige() + ' time' + ((this.getCurrentPrestige() == 1) ? '' : 's') + ', bringing this modifier to ' + prettify(1 + (0.25 * this.getCurrentPrestige())) + '.'; + elem.innerHTML = 'The bonus modifier from the ' + Fluffy.getName().substring(0, Fluffy.getName().length - 1) + 'focus Mastery (+25% exp per Prestige). ' + Fluffy.getName() + ' has evolved ' + this.getCurrentPrestige() + ' time' + ((this.getCurrentPrestige() == 1) ? '' : 's') + ', bringing this modifier to ' + prettify(1 + (0.25 * this.getCurrentPrestige())) + '.'; return; case "knowledge": elem.innerHTML = 'The bonus from your Knowledge Towers. You have ' + playerSpireTraps.Knowledge.owned + ' Knowledge Tower' + needAnS(playerSpireTraps.Knowledge.owned) + ', granting a bonus of ' + playerSpireTraps.Knowledge.getWorldBonus(true) + '% each, bringing this modifier to ' + (1 + (playerSpireTraps.Knowledge.getWorldBonus() / 100)) + "."; @@ -16162,7 +16162,7 @@ var Fluffy = { else fluffFormula += Fluffy.baseExp + " * (" + Fluffy.expGrowth + "^(Zone - " + startNumber + "))"; fluffFormula += ""; if (getHighestLevelCleared() >= 29) fluffFormula += ' * daily' + heliumOrRadon() + 'Modifier'; - if (game.talents.fluffyExp.purchased) fluffFormula += ' * Flufffocus'; + if (game.talents.fluffyExp.purchased) fluffFormula += ' * ' + Fluffy.getName().substring(0, Fluffy.getName().length - 1) + 'focus'; if (getHeirloomBonus("Staff", "FluffyExp") > 0) fluffFormula += ' * Staff'; if (playerSpireTraps.Knowledge.owned) fluffFormula += ' * Knowledge'; if (Fluffy.specialExpModifier > 1) fluffFormula += ' * ' + Fluffy.specialExpModifier + "";