Fix missing variable check in hcl_hoppers

This commit is contained in:
Wuzzy 2020-03-29 16:05:30 +02:00
parent 97ab2e7b38
commit 6ce3278dd4
1 changed files with 1 additions and 1 deletions

View File

@ -444,7 +444,7 @@ minetest.register_abm({
local abovenode = minetest.get_node(above)
if not minetest.registered_nodes[abovenode.name] then return end
local g = minetest.registered_nodes[abovenode.name].groups.container
mcl_util.move_item_container(above, pos)
local sucked = mcl_util.move_item_container(above, pos)
-- Also suck in non-fuel items from furnace fuel slot
if not sucked and g == 4 then