1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-06-29 23:26:04 +02:00

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...
This commit is contained in:
LeMagnesium 2015-02-25 21:17:23 +01:00
parent 342f99f23c
commit ecb9d17a33

View File

@ -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"},}
})