Skip to content

Commit

Permalink
[Core] Fix Usage of Deprecated Code
Browse files Browse the repository at this point in the history
  • Loading branch information
doadin committed Feb 14, 2024
1 parent 8c4ec1c commit 9165ee2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ local IsPlayerSpell = IsPlayerSpell;
local UnitClass = UnitClass;
local GetSpecialization = GetSpecialization;
local CreateFrame = CreateFrame;
local GetAddOnInfo = GetAddOnInfo;
local IsAddOnLoaded = IsAddOnLoaded;
local LoadAddOn = LoadAddOn;
local GetAddOnInfo = C_AddOns.GetAddOnInfo;
local IsAddOnLoaded = C_AddOns.IsAddOnLoaded
local LoadAddOn = C_AddOns.LoadAddOn;

local spellHistoryBlacklist = {
[75] = true; -- Auto shot
Expand Down

0 comments on commit 9165ee2

Please sign in to comment.