Skip to content

Master of the Void description says x1.5 increase but is x0.5 increase #273

@namedots

Description

@namedots

Master of the Void description says x1.5 increase but is x0.5 increase

"increase" implies addition, so an increase of x1.5 is +150%. the correct word here would instead be "multiply"

The increase in both cases is 50%, with the difference that one of them is additive and the other is compounding. The change of notation from N% to xN is making it worse.

var countedStacks = (stacks > maxStacks) ? maxStacks : stacks;
var bonusMod = (1 + (0.5 * countedStacks));  // without this mastery
if (game.talents.voidMastery.purchased) bonusMod = Math.pow(1.5, countedStacks);  // with this mastery

It could instead read: "Each Void Map in the stack multiplies the Helium gain from the stack by 150% rather than adding 50%."
It could also be left out entirely, or be replaced with an example.

Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    typoAn incorrect text or typo

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions