Skip to content

Commit

Permalink
improvement(inventory): 'Aeriform Speck' and 'Pristine Beast Fur'
Browse files Browse the repository at this point in the history
  • Loading branch information
ffainy committed Dec 10, 2022
1 parent 599a1f0 commit b278b1e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/modules/inventory/filters.lua
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,9 @@ local petTrashCurrenies = {
[36812] = true,
[62072] = true,
[67410] = true,

[192644] = true, -- 气态微尘
[192648] = true, -- 完好的野兽毛皮
}

function INVENTORY:IsPetTrashCurrency(itemID)
Expand All @@ -167,7 +170,7 @@ local function isItemCollection(item)
return
end

return item.id and C_ToyBox.GetToyInfo(item.id) or isMountOrPet(item) or INVENTORY:IsPetTrashCurrency(item.id)
return item.id and C_ToyBox.GetToyInfo(item.id) or isMountOrPet(item)
end

local function isItemCustom(item, index)
Expand Down

0 comments on commit b278b1e

Please sign in to comment.