Skip to content

Commit

Permalink
Excluded items with 'Stored Experience' from Bulk-Exchange evaluation
Browse files Browse the repository at this point in the history
  • Loading branch information
WhiteFang5 committed May 29, 2021
1 parent 8d8ac32 commit b8134ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/shared/module/poe/service/item/item-search.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ export class ItemSearchService {
case ItemCategory.MapFragment:
case ItemCategory.MapScarab:
case ItemCategory.Card:
if (currency) {
return this.exchange(requestedItem, options, currency)
if (currency && !requestedItem.properties?.storedExperience) {
return this.exchange(requestedItem, options, currency)
}
break
}
Expand Down

0 comments on commit b8134ad

Please sign in to comment.