This commit is contained in:
Lizzy Fleckenstein 2021-01-04 10:15:28 +01:00
parent abdb76c2a0
commit c36dc16527
2 changed files with 6 additions and 6 deletions

View File

@ -331,7 +331,7 @@ function minetest.handle_node_drops(pos, drops, digger)
end end
else else
-- Fixed Behavior -- Fixed Behavior
local drop = get_fortune_drops(fortune_drops, fortune_level) local drop = get_fortune_drops(fortune_drop, fortune_level)
drops = get_drops(drop, tool:get_name(), dug_node.param2, nodedef.paramtype2) drops = get_drops(drop, tool:get_name(), dug_node.param2, nodedef.paramtype2)
end end
end end

View File

@ -503,7 +503,7 @@ minetest.register_node("mcl_core:gravel", {
{items = {'mcl_core:gravel'}} {items = {'mcl_core:gravel'}}
} }
}, },
[3] = "mcl_core:flint" [3] = "mcl_core:flint",
}, },
}) })