Skip to content

Commit

Permalink
Merge pull request #2849 from jarveson/jake/wh-importer-error-remove
Browse files Browse the repository at this point in the history
wh-importer: remove error
  • Loading branch information
jarveson authored Apr 2, 2023
2 parents 06854b5 + c64aecb commit 52687a2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ui/core/components/importers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -322,8 +322,6 @@ export class IndividualWowheadGearPlannerImporter<SpecType extends Spec> extends
const slotId = gearBytes[cur] & 0b00111111;
const isEnchanted = Boolean(gearBytes[cur] & 0b10000000);
const randomEnchant = Boolean(gearBytes[cur] & 0b01000000);
if (randomEnchant)
throw new Error('randomEnchant not 0');
cur++;

const numGems = (gearBytes[cur] & 0b11100000) >> 5;
Expand Down

0 comments on commit 52687a2

Please sign in to comment.