From e1242a42ef3fced15460774ecdbebff0f0a93daf Mon Sep 17 00:00:00 2001 From: Eric H Date: Sat, 20 Jul 2019 18:48:50 -0600 Subject: [PATCH] Update VH levels GuardianCon showed skill trees with points only possible starting from lvl 2, i.e. lvl 27 Moze with 25 skill points invested. You can check for yourself from a few seconds after: https://youtu.be/2G8hPDIgvkU?t=40. Thanks for the awesome website! --- src/components/VaultHunter/selectors.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/VaultHunter/selectors.js b/src/components/VaultHunter/selectors.js index 4392023..34382fc 100644 --- a/src/components/VaultHunter/selectors.js +++ b/src/components/VaultHunter/selectors.js @@ -1,3 +1,3 @@ export function getLevel (state) { - return state.invested.reduce((total, current) => total + current, 3); + return state.invested.reduce((total, current) => total + current, 2); };