HOTFIX: fix typo with no gear skillpoint calc

fk js and also fk me
This commit is contained in:
hppeng 2022-07-17 23:48:42 -07:00
parent 8c050437fc
commit 09e605d36a

View file

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