Skip to content

Commit

Permalink
Disabled Combat Log Health in classic
Browse files Browse the repository at this point in the history
  • Loading branch information
d87 committed Mar 23, 2022
1 parent c615a3c commit df3f6ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Aptechka.lua
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,7 @@ function Aptechka.PLAYER_LOGIN(self,event,arg1)


-- AptechkaDB.global.useCombatLogHealthUpdates = false
--[[
if isClassic and AptechkaDB.global.useCombatLogHealthUpdates then
local CLH = LibStub("LibCombatLogHealth-1.0")
UnitHealth = CLH.UnitHealth
Expand All @@ -582,6 +583,7 @@ function Aptechka.PLAYER_LOGIN(self,event,arg1)
-- return Aptechka:COMBAT_LOG_HEALTH(nil, unit, health)
end)
end
]]

self:RegisterEvent("UNIT_AURA")
self:RegisterEvent("SPELLS_CHANGED")
Expand Down
2 changes: 1 addition & 1 deletion Options/GlobalSettings.lua
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ function ns.MakeGlobalSettings()
name = L"Use LibCLHealth",
desc = L"More frequent health updates based combat log",
type = "toggle",
disabled = not isClassic,
disabled = true,--not isClassic,
width = "full",
order = 18,
get = function(info) return isClassic and Aptechka.db.global.useCombatLogHealthUpdates end,
Expand Down

0 comments on commit df3f6ea

Please sign in to comment.