From 58bf707f40709914ebf0d73b6b8bd6a38a07b677 Mon Sep 17 00:00:00 2001 From: Tercio Jose Date: Thu, 1 Sep 2022 23:55:46 -0300 Subject: [PATCH] More Evoker Fixes --- Libs/DF/fw.lua | 2 +- Libs/DF/panel.lua | 3 ++- Libs/LibOpenRaid/GetPlayerInformation.lua | 6 +++++- Libs/LibOpenRaid/LibOpenRaid.lua | 2 +- Libs/LibOpenRaid/ThingsToMantain.lua | 6 ++++++ boot.lua | 2 +- 6 files changed, 16 insertions(+), 5 deletions(-) diff --git a/Libs/DF/fw.lua b/Libs/DF/fw.lua index e1efba7c..0c1b96e7 100644 --- a/Libs/DF/fw.lua +++ b/Libs/DF/fw.lua @@ -1,6 +1,6 @@ -local dversion = 341 +local dversion = 342 local major, minor = "DetailsFramework-1.0", dversion local DF, oldminor = LibStub:NewLibrary (major, minor) diff --git a/Libs/DF/panel.lua b/Libs/DF/panel.lua index 264de1d5..e08825d6 100644 --- a/Libs/DF/panel.lua +++ b/Libs/DF/panel.lua @@ -5086,7 +5086,8 @@ function DF:ApplyStandardBackdrop (f, darkTheme, alphaScale) alphaScale = alphaScale or 1.0 if(not f.SetBackdrop)then - print(debugstack(1,2,1)) + --print(debugstack(1,2,1)) + Mixin(f, BackdropTemplateMixin) end if (darkTheme) then diff --git a/Libs/LibOpenRaid/GetPlayerInformation.lua b/Libs/LibOpenRaid/GetPlayerInformation.lua index 4dda589e..4e8b3c80 100644 --- a/Libs/LibOpenRaid/GetPlayerInformation.lua +++ b/Libs/LibOpenRaid/GetPlayerInformation.lua @@ -443,5 +443,9 @@ openRaidLib.specAttribute = { [268] = 2, [269] = 2, [270] = 1, - } + }, + ["EVOKER"] = { + [1467] = 1, --Devastation + [1468] = 1, --Preservation + }, } \ No newline at end of file diff --git a/Libs/LibOpenRaid/LibOpenRaid.lua b/Libs/LibOpenRaid/LibOpenRaid.lua index bf37c102..9feff0ef 100644 --- a/Libs/LibOpenRaid/LibOpenRaid.lua +++ b/Libs/LibOpenRaid/LibOpenRaid.lua @@ -50,7 +50,7 @@ if (WOW_PROJECT_ID ~= WOW_PROJECT_MAINLINE and not IsDragonflight()) then end local major = "LibOpenRaid-1.0" -local CONST_LIB_VERSION = 44 +local CONST_LIB_VERSION = 45 LIB_OPEN_RAID_CAN_LOAD = false --declae the library within the LibStub diff --git a/Libs/LibOpenRaid/ThingsToMantain.lua b/Libs/LibOpenRaid/ThingsToMantain.lua index 787fe115..cb3422f0 100644 --- a/Libs/LibOpenRaid/ThingsToMantain.lua +++ b/Libs/LibOpenRaid/ThingsToMantain.lua @@ -699,6 +699,12 @@ LIB_OPEN_RAID_COOLDOWNS_BY_SPEC = { [8143] = 5, --Tremor Totem [57994] = 6, --Wind Shear (interrupt) }, + + --> EVOKER + --Devastation + [1467] = {}, + --Preservation + [1468] = {}, } --tells the duration, requirements and cooldown diff --git a/boot.lua b/boot.lua index 9ee51609..a7671a73 100644 --- a/boot.lua +++ b/boot.lua @@ -18,7 +18,7 @@ _detalhes.BFACORE = 131 --core version on BFA launch _detalhes.SHADOWLANDSCORE = 143 --core version on Shadowlands launch - _detalhes.dragonflight_beta_version = 15 + _detalhes.dragonflight_beta_version = 16 Details = _detalhes