Fixed CLEU handler!

main
JeffyLikesApples 1 year ago
parent 4a718db43c
commit 96a1fafa41
  1. 4
      src/EventManager/EventManager.lua

@ -142,13 +142,13 @@ function EventManager:CLEUHandler(...)
if isSelf then
if self.selfCombatEventHandlers[key] then
for _, callback in ipairs(self.selfCombatEventHandlers[key]) do
callback(timestamp, subevent, ...)
callback(...)
end
end
end
if self.CombatEventHandlers[key] then
for _, callback in ipairs(self.CombatEventHandlers[key]) do
callback(timestamp, subevent, ...)
callback(...)
end
end
end

Loading…
Cancel
Save