From 83056f613d110a8c46ee8012569740a0a9472417 Mon Sep 17 00:00:00 2001 From: Ombridride Date: Thu, 12 Mar 2015 01:56:31 +0100 Subject: [PATCH] fishing tweak - Add a craft recipe for worms - Fix an usebug with compressed cobble uncraft --- mods/fishing/worm.lua | 9 +++++++++ mods/moreblocks/crafting.lua | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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"}, }