mirror of
https://github.com/parnic/breakables.git
synced 2025-06-17 01:41:51 -05:00
Add support for 10.0.2/Dragonflight
This commit is contained in:
@ -5,12 +5,19 @@ local LBF = LibStub("Masque", true)
|
|||||||
|
|
||||||
local lbfGroup
|
local lbfGroup
|
||||||
|
|
||||||
local IsArtifactRelicItem = IsArtifactRelicItem
|
local IsArtifactRelicItem, GetBagName, GetContainerNumSlots, GetContainerItemInfo, GetContainerItemLink =
|
||||||
|
IsArtifactRelicItem, GetBagName, GetContainerNumSlots, GetContainerItemInfo, GetContainerItemLink
|
||||||
if not IsArtifactRelicItem then
|
if not IsArtifactRelicItem then
|
||||||
IsArtifactRelicItem = function()
|
IsArtifactRelicItem = function()
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
if C_Container then
|
||||||
|
GetBagName = C_Container.GetBagName
|
||||||
|
GetContainerNumSlots = C_Container.GetContainerNumSlots
|
||||||
|
GetContainerItemInfo = C_Container.GetContainerItemInfo
|
||||||
|
GetContainerItemLink = C_Container.GetContainerItemLink
|
||||||
|
end
|
||||||
|
|
||||||
local WowVer = select(4, GetBuildInfo())
|
local WowVer = select(4, GetBuildInfo())
|
||||||
local IsClassic = false
|
local IsClassic = false
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
v1.9.2:
|
||||||
|
|
||||||
|
- Dragonflight/10.0.2 compatibility
|
||||||
|
|
||||||
v1.9.1:
|
v1.9.1:
|
||||||
|
|
||||||
- Fix right-click ignore functionality after the upgrade to 10.0.
|
- Fix right-click ignore functionality after the upgrade to 10.0.
|
||||||
|
Reference in New Issue
Block a user