Update Fork #9

Merged
chmodsayshello merged 403 commits from MineClone5/MineClone5:master into master 2022-08-02 15:50:37 +02:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit 54e9477f37 - Show all commits

View File

@ -457,8 +457,9 @@ minetest.register_abm({
-- Try to move an item below before moving it sideways -- Try to move an item below before moving it sideways
local downnode = minetest.get_node(downpos) local downnode = minetest.get_node(downpos)
if not minetest.registered_nodes[downnode.name] then return end
if mcl_util.move_item_container(pos, downpos) then return end 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 -- Move an item from the hopper into the container to which the hopper points to
local g = get_item_group(frontnode.name, "container") local g = get_item_group(frontnode.name, "container")