From fed88eb7078678ba2b7d6f0360f1fd79201450da Mon Sep 17 00:00:00 2001 From: Buduf Date: Sun, 3 Jul 2022 12:29:44 +0200 Subject: [PATCH] bures-monitor hotfix --- bures-monitor.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bures-monitor.lua b/bures-monitor.lua index 9e0be63..5f229db 100644 --- a/bures-monitor.lua +++ b/bures-monitor.lua @@ -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