fixup! Fix missing return in on_event()

This commit is contained in:
Celtic Minstrel 2018-03-17 17:21:20 -04:00
parent a314876bf2
commit 8d74b72031

View file

@ -20,8 +20,8 @@ local function on_event(eventname, arg1, arg2)
if string.match(eventname, ",") then
for elem in utils.split(eventname or "") do
on_event(elem, arg1, arg2)
return
end
return
end
local priority = 0
local handler