Pseudo-Corp / SynergismOfficial

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Achievements 195, 196 show incorrect value

tiatin opened this issue · comments

Always stuck with 2% in description, though correct in calculation logic.

195: `Gain ${format(Math.min(25000, Decimal.log(player.ascendShards.add(1), 10) / 4, 2))}% more Cubes and Tesseracts on ascension! Multiplicative with the other Ach. bonus [MAX: 25,000% at e100,000 Const]`,
196: `Gain ${format(Math.min(2000, Decimal.log(player.ascendShards.add(1), 10) / 50, 2))}% more Platonic Cubes on ascension! [MAX: 2,000% at e100,000 Const]`,

Should be

195: `Gain ${format(Math.min(25000, Decimal.log(player.ascendShards.add(1), 10) / 4))}% more Cubes and Tesseracts on ascension! Multiplicative with the other Ach. bonus [MAX: 25,000% at e100,000 Const]`,
196: `Gain ${format(Math.min(2000, Decimal.log(player.ascendShards.add(1), 10) / 50))}% more Platonic Cubes on ascension! [MAX: 2,000% at e100,000 Const]`,

Close this please because it is fixed