1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-11-22 03:54:20 -05:00

convinced the event library to handle non-string filters

This commit is contained in:
XeonSquared 2019-11-26 18:50:36 +11:00
parent ce6e405934
commit 9dd7ec1889

View File

@ -13,9 +13,13 @@ 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 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
until computer.uptime() > tE