We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51a9c84 commit 126eb63Copy full SHA for 126eb63
core/TalentLoadoutManager.lua
@@ -107,8 +107,10 @@ function TLM:TRAIT_CONFIG_LIST_UPDATED()
107
--- @type number
108
self.playerSpecID = PlayerUtil.GetCurrentSpecID(); ---@diagnostic disable-line: assign-type-mismatch
109
self:RebuildLoadoutByIDCache();
110
- self:UpdateBlizzardLoadouts();
111
- self:DetectDeletedParents();
+ LibTT:RegisterOnCacheWarmup(function()
+ self:UpdateBlizzardLoadouts();
112
+ self:DetectDeletedParents();
113
+ end);
114
115
self:RegisterEvent("TRAIT_CONFIG_UPDATED");
116
self:RegisterEvent("TRAIT_CONFIG_DELETED");
0 commit comments