You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]`,
The text was updated successfully, but these errors were encountered:
Always stuck with 2% in description, though correct in calculation logic.
Should be
The text was updated successfully, but these errors were encountered: