From 6be94215b9e7356deb251a794595782a32ea4318 Mon Sep 17 00:00:00 2001 From: Sumsebrum Date: Tue, 22 Jun 2021 12:18:45 +0200 Subject: [PATCH] CI disable hotfix --- Modules/CombatIndicator.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/CombatIndicator.lua b/Modules/CombatIndicator.lua index b0ec9b4..54a8b76 100644 --- a/Modules/CombatIndicator.lua +++ b/Modules/CombatIndicator.lua @@ -95,7 +95,7 @@ function CombatIndicator.OnEvent(self, elapsed) if (self.lastTimeUpdated > self.updateInterval) then for i=1,Gladdy.curBracket do local unit = "arena" .. i - if CombatIndicator.test or (UnitExists(unit) and UnitAffectingCombat(unit)) then + if Gladdy.db.ciEnabled and (CombatIndicator.test or (UnitExists(unit) and UnitAffectingCombat(unit))) then CombatIndicator.frames[unit]:Show() else CombatIndicator.frames[unit]:Hide()