git
/
wowui.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
96ad366
)
ef91c25 - Fix totem tracker bug when changing spec
author
Aleksi Blinnikka <aleksi.blinnikka@gmail.com>
Tue, 27 Feb 2018 02:50:36 +0000
committer
Aleksi Blinnikka <aleksi.blinnikka@gmail.com>
Tue, 27 Feb 2018 02:50:36 +0000
OmaTMW/TellMeWhen.lua
patch
|
blob
|
history
diff --git
a/OmaTMW/TellMeWhen.lua
b/OmaTMW/TellMeWhen.lua
index
fd9b0fc
..
cb35b0b
100644
(file)
--- a/
OmaTMW/TellMeWhen.lua
+++ b/
OmaTMW/TellMeWhen.lua
@@
-247,7
+247,9
@@
Indicators:SetScript("OnEvent", function(self, event, arg1)
currentSpec = GetSpecialization();
for _, frame in pairs(frames) do
if frame.auras then updateAuraFrame(frame) end
- if frame.totems then updateTotemFrame(frame) end
+ if frame.totems then
+ for _, slot in pairs(frame.totems) do updateTotemFrame(frame, slot) end
+ end
end
elseif event == "PLAYER_LOGIN" then
initialize();