diff --git a/mods/fishing/worm.lua b/mods/fishing/worm.lua index 70515f0c..454fef9a 100644 --- a/mods/fishing/worm.lua +++ b/mods/fishing/worm.lua @@ -117,3 +117,12 @@ minetest.register_entity("fishing:bait_worm_entity", { look_whats_up(self) end, }) + +-- Bait Worm Entity +minetest.register_craft({ + output = "fishing:bait_worm_entity 8", + recipe = { + {"default:dirt"}, + {"default:dirt"}, + } +}) \ No newline at end of file diff --git a/mods/moreblocks/crafting.lua b/mods/moreblocks/crafting.lua index a1f6ff0d..dc859a85 100644 --- a/mods/moreblocks/crafting.lua +++ b/mods/moreblocks/crafting.lua @@ -447,7 +447,7 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "default:cobble 9", + output = "default:cobble 2", recipe = { {"moreblocks:cobble_compressed"}, }