From 168123c5a499d2d103d55bbf403b3a49bc3c28ec Mon Sep 17 00:00:00 2001 From: Aki Date: Mon, 4 Sep 2017 23:43:02 +0200 Subject: Fix also in this line --- not/Group.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'not') diff --git a/not/Group.lua b/not/Group.lua index e644e5e..45dc474 100644 --- a/not/Group.lua +++ b/not/Group.lua @@ -30,7 +30,7 @@ function Group:callEachBut (avoid, func, ...) for _,child in ipairs(self.children) do if child ~= avoid then if type(child[func]) == "function" then - table.insert(results, child[func](child, ...)) + table.insert(results, child[func](child, ...) or nil) end end end -- cgit v1.1