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!
This commit is contained in:
Eric H 2019-07-20 18:48:50 -06:00 committed by GitHub
parent 343bf59a1a
commit e1242a42ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
};