From 3bb999f686fe560a630c76fb54a38b09018e01d6 Mon Sep 17 00:00:00 2001 From: Aleksi Blinnikka Date: Mon, 30 Nov 2020 23:52:37 +0200 Subject: [PATCH] Fix max level for exp bar --- OmaAB/ExpBar.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OmaAB/ExpBar.lua b/OmaAB/ExpBar.lua index 1340cc3..9505c78 100644 --- a/OmaAB/ExpBar.lua +++ b/OmaAB/ExpBar.lua @@ -75,7 +75,7 @@ local function expBar() end frame:SetScript("OnEvent", function(self, event) - if UnitLevel("player") < 120 and not IsXPUserDisabled() then + if UnitLevel("player") < 60 and not IsXPUserDisabled() then return expBar(); end end); -- 2.39.5