Skip to content

Commit 159c8fb

Browse files
committed
Fix tooltip lines sometimes being added to old loot that cannot be catalysed
1 parent 0d647f5 commit 159c8fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TransmogUpgradeMaster.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ function TUM:IsAppearanceMissing(itemLink, classID, debugLines)
481481

482482
local isCatalysed = self:IsItemCatalysed(itemID)
483483
tryInsert(debugLines, 'isCatalysed: ' .. tostring(isCatalysed))
484-
canCatalyse = tokenInfo or (not isCatalysed and not isConquestPvpItem and self:IsCatalystSlot(itemSlot) and self:IsValidArmorTypeForClass(itemLink, classID))
484+
canCatalyse = tokenInfo or (seasonID and not isCatalysed and not isConquestPvpItem and self:IsCatalystSlot(itemSlot) and self:IsValidArmorTypeForClass(itemLink, classID))
485485
if canCatalyse then
486486
local catalystCollected, catalystUpgradeCollected
487487
local playerSets = self:GetSetsForClass(classID, seasonID)

0 commit comments

Comments
 (0)