Events shows all + tweaks
This commit is contained in:
@@ -10,4 +10,13 @@ function Array.filter(it, f)
|
||||
return ot
|
||||
end
|
||||
|
||||
function Array.removeByValue(t, e)
|
||||
for k,v in pairs(t) do
|
||||
if v == e then
|
||||
table.remove(t, k)
|
||||
break
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return Array
|
||||
|
||||
Reference in New Issue
Block a user