Skip to content

Commit

Permalink
fragments have Normal rarity
Browse files Browse the repository at this point in the history
  • Loading branch information
SnosMe committed Oct 24, 2021
1 parent ace61e0 commit 901c8db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/parser/Parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,9 @@ function parseGem (section: string[], item: ParsedItem) {
}

function parseStackSize (section: string[], item: ParsedItem) {
if (item.rarity !== ItemRarity.Currency && item.rarity !== ItemRarity.DivinationCard) {
if (item.rarity !== ItemRarity.Normal &&
item.rarity !== ItemRarity.Currency &&
item.rarity !== ItemRarity.DivinationCard) {
return PARSER_SKIPPED
}
if (section[0].startsWith(_$[C.TAG_STACK_SIZE])) {
Expand Down

0 comments on commit 901c8db

Please sign in to comment.