We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97ffae4 commit 5e9bd6cCopy full SHA for 5e9bd6c
src/App.js
@@ -694,7 +694,7 @@ function App() {
694
}
695
function upgradeMaxLevel() {
696
//upgrade max level
697
- if (checkPointsForUpgrade(points, 100 * Math.pow(10, maxLevel - 1))) {
+ if (points > 100 * Math.pow(10, maxLevel - 1)) {
698
setAutoClickers((prevAutoClickers) => [
699
...prevAutoClickers,
700
{ value: 0, level: maxLevel + 1 },
@@ -1091,7 +1091,7 @@ function App() {
1091
<td>
1092
Autoclicker Bonus Multiplier:{' '}
1093
<NumericDisplay
1094
- value={autoClickersBonus[i].value}
+ value={autoClickersBonusMultiplier[i].value}
1095
shortForm={false}
1096
/>
1097
<br />
0 commit comments