convinced the event library to handle non-string filters

This commit is contained in:
Izaya 2019-11-26 18:50:36 +11:00
parent ce6e405934
commit 9dd7ec1889
1 changed files with 6 additions and 2 deletions

View File

@ -13,8 +13,12 @@ function event.pull(t,...) -- return an event, optionally with timeout *t* and f
tEv = {coroutine.yield()}
local ret = true
for i = 1, #tA do
if not (tEv[i] or ""):match(tA[i]) then
ret = false
if type(tEv[i]) == "string" and type(tA[i]) == "string" then
if not (tEv[i] or ""):match(tA[i]) then
ret = false
end
else
ret = tEv[i] == tA[i]
end
end
if ret then return table.unpack(tEv) end