From 51e2d7fd60f9a89a0813bd8c3fa411e1c100e19d Mon Sep 17 00:00:00 2001 From: crabman77 Date: Wed, 25 Feb 2015 00:18:43 +0100 Subject: [PATCH] replace default:stick by group:stick for crafting fishing:pole with mores stick --- mods/fishing/crafting.lua | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/mods/fishing/crafting.lua b/mods/fishing/crafting.lua index d52e2b97..cd1fee68 100644 --- a/mods/fishing/crafting.lua +++ b/mods/fishing/crafting.lua @@ -15,27 +15,27 @@ minetest.register_craft({ output = "fishing:pole", recipe = { - {"", "", "default:stick" }, - {"", "default:stick", "farming:string"}, - {"default:stick", "", "farming:string"}, + {"", "", "group:stick" }, + {"", "group:stick", "farming:string"}, + {"group:stick", "", "farming:string"}, } }) minetest.register_craft({ output = "fishing:pole", recipe = { - {"", "", "default:stick" }, - {"", "default:stick", "moreblocks:rope"}, - {"default:stick", "", "moreblocks:rope"}, + {"", "", "group:stick" }, + {"", "group:stick", "moreblocks:rope"}, + {"group:stick", "", "moreblocks:rope"}, } }) if minetest.get_modpath("ropes") ~= nil then minetest.register_craft({ output = "fishing:pole", recipe = { - {"", "", "default:stick" }, - {"", "default:stick", "ropes:rope" }, - {"default:stick", "", "ropes:rope" }, + {"", "", "group:stick" }, + {"", "group:stick", "ropes:rope" }, + {"group:stick", "", "ropes:rope" }, } }) end