Skip to content

Commit

Permalink
Disallow exotic class item for bestClassArmor for now
Browse files Browse the repository at this point in the history
  • Loading branch information
dragoni7 committed Aug 27, 2024
1 parent 8371f68 commit b733553
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/features/armor-optimization/generate-permutations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ export const generatePermutations = (
let artificeMasterworkedClassArmor = undefined;

for (const item of classItem) {
if (item.exotic) continue;

if (masterworkedClassArmor !== undefined && artificeMasterworkedClassArmor !== undefined) break;

if (item.masterwork === true) {
Expand Down

0 comments on commit b733553

Please sign in to comment.