local function updateUnitCD(guid)
local specid = guidToSpecid[guid];
- if specid then
+ if specid and trackedcds[specid] then
for spellid, _ in pairs(trackedcds[specid]) do
updateCD(guid, specid, spellid);
end
if not InCombatLockdown() then
for guid, _ in pairs(monks) do
local id = guidToId[guid];
- if id then OmaInspect.Request(guid, id, updateMonk) end
+ if id then OmaInspect.Request(guid, id, updateMonk, true) end
end
end
CTimerAfter(10, monkTick);