bures-monitor hotfix

This commit is contained in:
Buduf 2022-07-03 12:29:44 +02:00
parent 4f562c0ba7
commit fed88eb707

View File

@ -19,7 +19,7 @@ local function tFilter(table, func)
local result = {}
for key, value in pairs(table) do
if func(value) then
result.insert(result, value)
result:insert(result, value)
end
end
return result