Merge pull request #11 from Or-Gold/master
Fix strdex optimizer (possibly/partially)
This commit is contained in:
commit
0179b4760e
1 changed files with 2 additions and 0 deletions
|
@ -976,6 +976,8 @@ function optimizeStrDex() {
|
|||
const base_skillpoints = player_build.base_skillpoints;
|
||||
const max_str_boost = 100 - base_skillpoints[0];
|
||||
const max_dex_boost = 100 - base_skillpoints[1];
|
||||
if (Math.min(remaining, max_str_boost, max_dex_boost) < 0) return; // Unwearable
|
||||
|
||||
const base_total_skillpoints = player_build.total_skillpoints;
|
||||
let str_bonus = remaining;
|
||||
let dex_bonus = 0;
|
||||
|
|
Loading…
Reference in a new issue