Fix missing return in on_event()

This commit is contained in:
Celtic Minstrel 2018-03-17 13:53:30 -04:00
parent e776635023
commit d4e08359dd

View File

@ -20,6 +20,7 @@ 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
end
local priority = 0