From 9a54b095a305f6fd76753f17efa06c30ea41c916 Mon Sep 17 00:00:00 2001 From: Darthpred Date: Fri, 28 Nov 2014 20:05:18 +0400 Subject: [PATCH 1/2] fml, forgot those --- ElvUI_SLE/core/install.lua | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/ElvUI_SLE/core/install.lua b/ElvUI_SLE/core/install.lua index 45125ad..48a9380 100644 --- a/ElvUI_SLE/core/install.lua +++ b/ElvUI_SLE/core/install.lua @@ -209,10 +209,16 @@ function AI:DarthSetup() --The function to switch from classic ElvUI settings to E.db["unitframe"]["fontOutline"] = "OUTLINE" E.db["unitframe"]["statusbar"] = "Polished Wood" E.db["unitframe"]["font"] = "ElvUI Font" - E.db["unitframe"]["colors"]["castNoInterrupt"]["b"] = 0.250980392156863 - E.db["unitframe"]["colors"]["castNoInterrupt"]["g"] = 0.250980392156863 - E.db["unitframe"]["colors"]["castNoInterrupt"]["r"] = 0.780392156862745 - E.db["unitframe"]["colors"]["auraBarBuff"]["b"] = 0.109803921568627 + E.db["unitframe"]["colors"]["castNoInterrupt"] = { + ["r"] = 0.780392156862745, + ["g"] = 0.250980392156863, + ["b"] = 0.250980392156863, + } + E.db["unitframe"]["colors"]["castColor"] = { + ["r"] = 0.803921568627451, + ["g"] = 0.76078431372549, + ["b"] = 0.180392156862745, + } E.db["unitframe"]["colors"]["auraBarBuff"]["g"] = 0.552941176470588 E.db["unitframe"]["colors"]["auraBarBuff"]["r"] = 0.317647058823529 E.db["unitframe"]["colors"]["colorhealthbyvalue"] = false @@ -505,7 +511,6 @@ function AI:DarthSetup() --The function to switch from classic ElvUI settings to E.private["sle"]["minimap"]["mapicons"]["enable"] = true E.private["sle"]["equip"]["spam"] = true E.private["sle"]["equip"]["setoverlay"] = true - E.private["sle"]["marks"]["marks"] = true E.private["ElvUI_Currency"]["Unused"] = false E.private["ElvUI_Currency"]["Archaeology"] = false -- 1.7.9.5 From ba719c9e68cdf924e87f8d599076f23555db6bf1 Mon Sep 17 00:00:00 2001 From: Darthpred Date: Fri, 28 Nov 2014 21:51:57 +0400 Subject: [PATCH 2/2] Turns out people like to disable shit for some reason --- ElvUI_SLE/modules/bags.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/ElvUI_SLE/modules/bags.lua b/ElvUI_SLE/modules/bags.lua index e688974..5d8d6f9 100755 --- a/ElvUI_SLE/modules/bags.lua +++ b/ElvUI_SLE/modules/bags.lua @@ -134,6 +134,7 @@ end function SB:Initialize() self.hookedBags = {}; + if not E.private.bags.enable then return end local BUpdateSlot = B.UpdateSlot; local SBUpdateSlot = SB.UpdateSlot; for _, bagFrame in pairs(B.BagFrames) do -- 1.7.9.5