diff --git a/src/components/VaultHunter/investmentValidator.js b/src/components/VaultHunter/investmentValidator.js index edfb833..e532d9c 100644 --- a/src/components/VaultHunter/investmentValidator.js +++ b/src/components/VaultHunter/investmentValidator.js @@ -19,6 +19,6 @@ export default function investmentValidator (skills) { totalSpent += treeTotal; treeIndex += 1; }; - if (totalSpent > (50 - 3) + 11 + 11) { return false; } + if (totalSpent > (60 - 3) + 11 + 11) { return false; } return treeTotals; }