diff --git a/BagBar.lua b/BagBar.lua index f472fa8..bd517fe 100644 --- a/BagBar.lua +++ b/BagBar.lua @@ -33,7 +33,7 @@ function BagBarMod:OnEnable() end self.bar:Enable() self:ToggleOptions() - self.bar:ApplyConfig(self.db.profile) + self:ApplyConfig() end function BagBarMod:ApplyConfig() diff --git a/MicroMenu.lua b/MicroMenu.lua index c792837..3ee8b8a 100644 --- a/MicroMenu.lua +++ b/MicroMenu.lua @@ -55,7 +55,7 @@ function MicroMenuMod:OnEnable() end self.bar:Enable() self:ToggleOptions() - self.bar:ApplyConfig(self.db.profile) + self:ApplyConfig() end function MicroMenuMod:ApplyConfig() diff --git a/RepXPBar.lua b/RepXPBar.lua index e179a51..92a8693 100644 --- a/RepXPBar.lua +++ b/RepXPBar.lua @@ -33,7 +33,7 @@ function RepBarMod:OnEnable() end self.bar:Enable() self:ToggleOptions() - self.bar:ApplyConfig(self.db.profile) + self:ApplyConfig() end function RepBarMod:ApplyConfig() @@ -80,7 +80,7 @@ function XPBarMod:OnEnable() end self.bar:Enable() self:ToggleOptions() - self.bar:ApplyConfig(self.db.profile) + self:ApplyConfig() end XPBarMod.ApplyConfig = RepBarMod.ApplyConfig diff --git a/StanceBar.lua b/StanceBar.lua index 2b1d9f3..8eec8b5 100644 --- a/StanceBar.lua +++ b/StanceBar.lua @@ -43,7 +43,7 @@ function StanceBarMod:OnEnable() self.bar:RegisterEvent("ACTIONBAR_PAGE_CHANGED") self:RegisterEvent("UPDATE_BINDINGS", "ReassignBindings") self:ReassignBindings() - self.bar:ApplyConfig(self.db.profile) + self:ApplyConfig() end StanceBarMod.button_count = 10