Skip to content

Commit

Permalink
Fixed an issue with the addon not loading in properly
Browse files Browse the repository at this point in the history
  • Loading branch information
Slackluster committed Aug 13, 2024
1 parent c9010eb commit 375f80e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ function event:ADDON_LOADED(addOnName, containsBindings)
app.Initialise()
app.CreateAssets()
app.Settings()

app.TagMountMacro()
end
end

Expand Down Expand Up @@ -867,8 +869,8 @@ end
-- These are just for me to use, since I always have this particular AddOn enabled

-- Mount macro: With this I can see what my current flight style is, while also using #showtooltip Invincible to have my mount macro darken to show me when I can't mount
function event:ADDON_LOADED(addOnName, containsBindings)
if addOnName == appName and EquipRecommendedGear_Settings["Tag"] then
function app.TagMountMacro()
if EquipRecommendedGear_Settings["Tag"] then
C_Timer.After(5, function()
EditMacro(1, " ", C_Spell.GetSpellInfo(436854).iconID)
end)
Expand Down

0 comments on commit 375f80e

Please sign in to comment.