Closed godsyn closed 3 years ago
Temp fix: core.lua: around line 110:
self:RegisterEvent("PLAYER_REGEN_ENABLED","OnLeaveCombat")
self:RegisterEvent("PLAYER_ENTERING_WORLD","OnEnterWorld")
if WOW_PROJECT_ID ~= WOW_PROJECT_CLASSIC then
self:RegisterEvent("PET_BATTLE_OPENING_START","OnPetBattleOpen")
self:RegisterEvent("PET_BATTLE_CLOSE","OnPetBattleOver")
end
self:RegisterEvent("ADDON_LOADED",function(event, addonName)
if self[addonName] then self[addonName](self) end
end)
CB_PlayedTime.lua:
Change line 65 from:
if UnitLevel("player") == GetMaxLevelForPlayerExpansion() then
to
if WOW_PROJECT_ID == WOW_PROJECT_CLASSIC then
CB_PlayedTime_Options.lua:
comment line 49
--LibStub("AceConfigDialog-3.0"):AddToBlizOptions(addonName, addonName)
Above confirmed working for both classic and retail.
fixed in ChocolateBar 3.6.14