Fix 11.1.5 issue, update retail TOC

This commit is contained in:
Parnic
2025-04-26 16:45:39 -05:00
parent b368558959
commit 42fab8e4a4
6 changed files with 24 additions and 6 deletions

View File

@ -532,7 +532,11 @@ function SliceAndDice.prototype:GetItemIdFromItemLink(linkStr)
local _
if linkStr then
_, itemId, _, _, _, _, _, _, _ = strsplit(":", linkStr)
_, itemId, itemId2, _, _, _, _, _, _ = strsplit(":", linkStr)
end
if not tonumber(itemId) then
itemId = itemId2
end
return itemId or 0