Fix filter function

This commit is contained in:
NullBite 2022-03-21 10:32:44 -04:00
parent 7de0e7f399
commit 3eb3dacfb0
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

@ -74,8 +74,8 @@ function filter(func, table)
if func(v) then
t[k]=v
end
return t
end
return t
end
--- Merge two tables. First table value takes precedence when conflict occurs.