Increase level cap from 50 to 60

This commit is contained in:
ataylorme 2020-10-22 14:21:03 -07:00
parent d0f2a6c5f9
commit 29d6c4cc8a

View file

@ -19,6 +19,6 @@ export default function investmentValidator (skills) {
totalSpent += treeTotal; totalSpent += treeTotal;
treeIndex += 1; treeIndex += 1;
}; };
if (totalSpent > (50 - 3) + 11 + 11) { return false; } if (totalSpent > (60 - 3) + 11 + 11) { return false; }
return treeTotals; return treeTotals;
} }