recognize WotLKC as "timewalking" everywhere GetBuildInfo is used

This commit is contained in:
Daniel Henry
2022-07-20 12:38:37 -04:00
parent b8d6a366fd
commit fea926f6bd
4 changed files with 6 additions and 3 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ local openRaidLib = LibStub:GetLibrary("LibOpenRaid-1.0")
local isTimewalkWoW = function()
local gameVersion = GetBuildInfo()
if (gameVersion:match("%d") == "1" or gameVersion:match("%d") == "2") then
if (gameVersion:match("%d") == "1" or gameVersion:match("%d") == "2" or gameVersion:match("%d") == "3") then
return true
end
end