git
/
wowui.git
/ blobdiff
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
eeb4189 - Update all bars after loading
[wowui.git]
/
OmaRF
/
Indicators.lua
diff --git
a/OmaRF/Indicators.lua
b/OmaRF/Indicators.lua
index
fbf9817
..
b3c7d07
100644
(file)
--- a/
OmaRF/Indicators.lua
+++ b/
OmaRF/Indicators.lua
@@
-7,9
+7,9
@@
local UnitIsDeadOrGhost, UnitIsConnected = UnitIsDeadOrGhost, UnitIsConnected;
local CTimerAfter = C_Timer.After;
local Settings = OmaRFSettings;
local CTimerAfter = C_Timer.After;
local Settings = OmaRFSettings;
-local positions = Settings.Positions;
-local watchedAuras = Settings.Character["WatchedAuras"];
local majorAuras = Settings.MajorAuras;
local majorAuras = Settings.MajorAuras;
+local positions = {};
+local watchedAuras = {};
local updaters = {};
local updating = {};
local updaters = {};
local updating = {};
@@
-122,3
+122,8
@@
function M.CheckIndicators(frame, unit)
frame.major:Hide();
end
end
frame.major:Hide();
end
end
+
+function M.LoadChar()
+ watchedAuras = Settings.Character["WatchedAuras"];
+ positions = Settings.Character.Positions;
+end