1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-28 15:30:33 +02:00

Re-increased amount of sticks given for a default:wood

- Avoided conflict between building_blocks:sticks and default:wood by changing
  the default:wood's recipe and output
This commit is contained in:
LeMagnesium 2015-02-26 09:18:19 +01:00
parent fe6fa8222e
commit 908082e9ba

View File

@ -1,8 +1,7 @@
-- mods/default/crafting.lua
minetest.register_craft({
output = "default:wood 4",
output = "default:wood 9",
recipe = {{"default:tree"},}
})
@ -19,7 +18,7 @@ minetest.register_craft({
})
minetest.register_craft({
output = "default:stick 4",
output = "default:stick 9",
recipe = {{"group:wood"},}
})