Skip to content

Commit

Permalink
Merge pull request #74 from dragoni7/stat-table-ui-fix
Browse files Browse the repository at this point in the history
swapped position in permutation const
  • Loading branch information
Rorschach7552 authored Sep 13, 2024
2 parents 211480f + d1fd681 commit a3a0fb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/armor-optimization/generate-permutations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export function generatePermutations(
}
}

const armorTypes = [filteredHelmet, filteredArms, filteredLegs, filteredChest];
const armorTypes = [filteredHelmet, filteredArms, filteredChest, filteredLegs];

// Find best class armor to use for permutation
let masterworkedClassArmor = undefined;
Expand Down

0 comments on commit a3a0fb5

Please sign in to comment.