From ecb9d17a33a028d2cfb25f7dc63073cd81d65e07 Mon Sep 17 00:00:00 2001 From: LeMagnesium Date: Wed, 25 Feb 2015 21:17:23 +0100 Subject: [PATCH] Decreased the number of sticks given from group:wood - In the craft inventory, putting, from now, an item from the group:wood won't give you 9 sticks anymore but 4. In fact, 4 sticks give you a wooden plank item, part of the group:wood, and this wooden plank gives you back 9 sticks, which could be used to craft again some wooden planks, etc... --- minetestforfun_game/mods/default/crafting.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/minetestforfun_game/mods/default/crafting.lua b/minetestforfun_game/mods/default/crafting.lua index 84a7232d..e5143deb 100644 --- a/minetestforfun_game/mods/default/crafting.lua +++ b/minetestforfun_game/mods/default/crafting.lua @@ -1,5 +1,6 @@ -- mods/default/crafting.lua + minetest.register_craft({ output = "default:wood 4", recipe = {{"default:tree"},} @@ -18,7 +19,7 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "default:stick 9", + output = "default:stick 4", recipe = {{"group:wood"},} })