mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 06:40:13 -05:00
Fix 11.1.5 issue, update retail TOC
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
## Interface: 110100
|
## Interface: 110105
|
||||||
## Interface-Retail: 110100
|
## Interface-Retail: 110105
|
||||||
## Interface-Classic: 11507
|
## Interface-Classic: 11507
|
||||||
## Interface-BCC: 20504
|
## Interface-BCC: 20504
|
||||||
## Interface-Wrath: 30403
|
## Interface-Wrath: 30403
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
## Interface: 110100
|
## Interface: 110105
|
||||||
## Interface-Retail: 110100
|
## Interface-Retail: 110105
|
||||||
## Interface-Classic: 11507
|
## Interface-Classic: 11507
|
||||||
## Interface-BCC: 20504
|
## Interface-BCC: 20504
|
||||||
## Interface-Wrath: 30403
|
## Interface-Wrath: 30403
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
v1.15.14:
|
||||||
|
|
||||||
|
- Support WoW 11.1.5
|
||||||
|
- Update TWW TOC to 11.1.5
|
||||||
|
|
||||||
v1.15.13:
|
v1.15.13:
|
||||||
|
|
||||||
- Update TOCs
|
- Update TOCs
|
||||||
|
@ -477,7 +477,11 @@ function RollTheBones.prototype:GetItemIdFromItemLink(linkStr)
|
|||||||
local _
|
local _
|
||||||
|
|
||||||
if linkStr then
|
if linkStr then
|
||||||
_, itemId, _, _, _, _, _, _, _ = strsplit(":", linkStr)
|
_, itemId, itemId2, _, _, _, _, _, _ = strsplit(":", linkStr)
|
||||||
|
end
|
||||||
|
|
||||||
|
if not tonumber(itemId) then
|
||||||
|
itemId = itemId2
|
||||||
end
|
end
|
||||||
|
|
||||||
return itemId or 0
|
return itemId or 0
|
||||||
|
@ -532,7 +532,11 @@ function SliceAndDice.prototype:GetItemIdFromItemLink(linkStr)
|
|||||||
local _
|
local _
|
||||||
|
|
||||||
if linkStr then
|
if linkStr then
|
||||||
_, itemId, _, _, _, _, _, _, _ = strsplit(":", linkStr)
|
_, itemId, itemId2, _, _, _, _, _, _ = strsplit(":", linkStr)
|
||||||
|
end
|
||||||
|
|
||||||
|
if not tonumber(itemId) then
|
||||||
|
itemId = itemId2
|
||||||
end
|
end
|
||||||
|
|
||||||
return itemId or 0
|
return itemId or 0
|
||||||
|
@ -1,5 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
v1.15.14:
|
||||||
|
|
||||||
|
- Support WoW 11.1.5
|
||||||
|
- Update TWW TOC to 11.1.5
|
||||||
|
|
||||||
v1.15.13:
|
v1.15.13:
|
||||||
|
|
||||||
- Update TOCs
|
- Update TOCs
|
||||||
|
Reference in New Issue
Block a user