From 29d6c4cc8a4567ecfc5dbad67b6c89c01037f8fa Mon Sep 17 00:00:00 2001 From: ataylorme Date: Thu, 22 Oct 2020 14:21:03 -0700 Subject: [PATCH] Increase level cap from 50 to 60 --- src/components/VaultHunter/investmentValidator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }