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
@@ -41,7 +41,7 @@ local PixelUtil = PixelUtil or DFPixelUtil
if (not PixelUtil) then
--check if is in classic or TBC wow, if it is, build a replacement for PixelUtil
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
PixelUtil = {
SetWidth = function (self, width) self:SetWidth (width) end,
SetHeight = function (self, height) self:SetHeight (height) end,