Fix an issue when IsArtifactRelicItem is not defined

This commit is contained in:
2021-04-09 21:13:30 -05:00
parent 7f53ef3d90
commit 481793c8ff
2 changed files with 10 additions and 0 deletions

View File

@ -5,6 +5,13 @@ local LBF = LibStub("Masque", true)
local lbfGroup local lbfGroup
local IsArtifactRelicItem = IsArtifactRelicItem
if not IsArtifactRelicItem then
IsArtifactRelicItem = function()
return false
end
end
local WowVer = select(4, GetBuildInfo()) local WowVer = select(4, GetBuildInfo())
local IsClassic = WOW_PROJECT_ID and WOW_PROJECT_ID == WOW_PROJECT_CLASSIC local IsClassic = WOW_PROJECT_ID and WOW_PROJECT_ID == WOW_PROJECT_CLASSIC

View File

@ -1,3 +1,6 @@
v1.7.4:
- Fix an issue when IsArtifactRelicItem is not defined
v1.7.3: v1.7.3:
- Add option to suppress tooltips by request - Add option to suppress tooltips by request
- Updated Classic TOC to 1.13.6 - Updated Classic TOC to 1.13.6