Skip to content

Commit 557b0b6

Browse files
committed
Fix missing tooltip on "learned from another item" in the collection UI
1 parent b8fced3 commit 557b0b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

collectionUi.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ function UI:BuildUI()
395395
self.rows = {};
396396
--- @param column TUM_UI_Column
397397
local function OnEnter(column)
398-
if column.isCollected then return; end
398+
if column.isCollected == true then return; end
399399
GameTooltip:SetOwner(column, 'ANCHOR_CURSOR_RIGHT');
400400
GameTooltip:AddLine('Transmog Upgrade Master');
401401
if column.results and next(column.results) then

0 commit comments

Comments
 (0)