Skip to content

Commit 3a3d701

Browse files
committed
Ignore inventory items that don't use an itemlink (such as keystones; fixes #7)
1 parent fbe7b8a commit 3a3d701

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

collectionUi.lua

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -676,6 +676,9 @@ end
676676

677677
--- @param result SyndicatorSearchResult
678678
local function handleResult(result)
679+
if LinkUtil.ExtractLink(result.itemLink) ~= 'item' then
680+
return;
681+
end
679682
local item = Item:CreateFromItemLink(result.itemLink);
680683
item:ContinueOnItemLoad(function()
681684
local info, upgradeInfo = checkResult(result, UI.currentClass, UI.currentSeason);

0 commit comments

Comments
 (0)