Compare commits

...

1 Commits

Author SHA1 Message Date
42fab8e4a4 Fix 11.1.5 issue, update retail TOC 2025-04-26 16:45:39 -05:00
6 changed files with 24 additions and 6 deletions

View File

@ -1,5 +1,5 @@
## Interface: 110100
## Interface-Retail: 110100
## Interface: 110105
## Interface-Retail: 110105
## Interface-Classic: 11507
## Interface-BCC: 20504
## Interface-Wrath: 30403

View File

@ -1,5 +1,5 @@
## Interface: 110100
## Interface-Retail: 110100
## Interface: 110105
## Interface-Retail: 110105
## Interface-Classic: 11507
## Interface-BCC: 20504
## Interface-Wrath: 30403

View File

@ -1,5 +1,10 @@
# Changelog
v1.15.14:
- Support WoW 11.1.5
- Update TWW TOC to 11.1.5
v1.15.13:
- Update TOCs

View File

@ -477,7 +477,11 @@ function RollTheBones.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

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

View File

@ -1,5 +1,10 @@
# Changelog
v1.15.14:
- Support WoW 11.1.5
- Update TWW TOC to 11.1.5
v1.15.13:
- Update TOCs