From d57097baefd65c674b3bc9d2ad3067a805876ba3 Mon Sep 17 00:00:00 2001 From: Gustavo Ramos Rehermann Date: Mon, 20 Jun 2022 20:37:15 -0300 Subject: [PATCH] Fix syntax error with hopper check --- mods/ITEMS/mcl_hoppers/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_hoppers/init.lua b/mods/ITEMS/mcl_hoppers/init.lua index 278e9d8ea..7ae0a4916 100644 --- a/mods/ITEMS/mcl_hoppers/init.lua +++ b/mods/ITEMS/mcl_hoppers/init.lua @@ -458,7 +458,7 @@ minetest.register_abm({ -- Try to move an item below before moving it sideways local downnode = minetest.get_node(downpos) - if minetest.registered_nodes[downnode.name] and \ + if minetest.registered_nodes[downnode.name] and mcl_util.move_item_container(pos, downpos) then return end -- Move an item from the hopper into the container to which the hopper points to