diff --git a/Libs/DF/fw.lua b/Libs/DF/fw.lua index 4978ded0..6b5b3dd7 100644 --- a/Libs/DF/fw.lua +++ b/Libs/DF/fw.lua @@ -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, diff --git a/Libs/LibOpenRaid/GetPlayerInformation.lua b/Libs/LibOpenRaid/GetPlayerInformation.lua index 30de4256..89d59d0a 100644 --- a/Libs/LibOpenRaid/GetPlayerInformation.lua +++ b/Libs/LibOpenRaid/GetPlayerInformation.lua @@ -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 diff --git a/Libs/LibOpenRaid/LibOpenRaid.lua b/Libs/LibOpenRaid/LibOpenRaid.lua index 525d2290..67b0d3cb 100644 --- a/Libs/LibOpenRaid/LibOpenRaid.lua +++ b/Libs/LibOpenRaid/LibOpenRaid.lua @@ -131,7 +131,7 @@ LIB_OPEN_RAID_CAN_LOAD = false 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 diff --git a/Libs/LibOpenRaid/ThingsToMantain.lua b/Libs/LibOpenRaid/ThingsToMantain.lua index b7b5eb80..02fb7273 100644 --- a/Libs/LibOpenRaid/ThingsToMantain.lua +++ b/Libs/LibOpenRaid/ThingsToMantain.lua @@ -965,6 +965,9 @@ if (GetBuildInfo():match ("%d") == "1") then elseif (GetBuildInfo():match ("%d") == "2") then LIB_OPEN_RAID_SPELL_CUSTOM_NAMES = {} +elseif (GetBuildInfo():match ("%d") == "3") then + LIB_OPEN_RAID_SPELL_CUSTOM_NAMES = {} + else LIB_OPEN_RAID_SPELL_CUSTOM_NAMES = { [44461] = {name = GetSpellInfo(44461) .. " (" .. L["STRING_EXPLOSION"] .. ")"}, --Living Bomb (explosion)