Update grinder.lua

This commit is contained in:
superfloh247 2021-05-31 11:33:16 +02:00 committed by GitHub
parent e190163182
commit 58c5c7326a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -29,19 +29,6 @@ local CYCLE_TIME = 2
-- Grinder recipes
local Recipes = {}
function dump(o)
if type(o) == 'table' then
local s = '{ '
for k,v in pairs(o) do
if type(k) ~= 'number' then k = '"'..k..'"' end
s = s .. '['..k..'] = ' .. dump(v) .. ','
end
return s .. '} '
else
return tostring(o)
end
end
local function formspec(self, pos, meta)
return "size[8,8]"..
default.gui_bg..