Skip to content

Commit d86494e

Browse files
committed
Fixed possible lag when Brann levels up (fixes #35)
1 parent d634c62 commit d86494e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/TalentLoadoutManager.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,9 +120,9 @@ function TLM:TRAIT_CONFIG_LIST_UPDATED()
120120
self:RegisterEvent("PLAYER_ENTERING_WORLD");
121121
end
122122

123-
function TLM:TRAIT_CONFIG_UPDATED()
123+
function TLM:TRAIT_CONFIG_UPDATED(_, configID)
124124
RunNextFrame(function()
125-
self:UpdateBlizzardLoadouts();
125+
self:UpdateBlizzardLoadout(configID);
126126
end);
127127
end
128128

0 commit comments

Comments
 (0)