From 09e605d36af3feb3c9adaf43f54a1190e9355d9a Mon Sep 17 00:00:00 2001 From: hppeng Date: Sun, 17 Jul 2022 23:48:42 -0700 Subject: [PATCH] HOTFIX: fix typo with no gear skillpoint calc fk js and also fk me --- js/skillpoints.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/skillpoints.js b/js/skillpoints.js index f2fa858..f83a47e 100644 --- a/js/skillpoints.js +++ b/js/skillpoints.js @@ -204,7 +204,7 @@ function calculate_skillpoints(equipment, weapon) { const skp = needed_skillpoints[i]; best_skillpoints[i] += skp; final_skillpoints[i] += skp; - best_skillpoints += skp; + best_total += skp; } apply_skillpoints(final_skillpoints, weapon, best_activeSetCounts); }