diff options
author | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2018-05-13 17:17:59 +0200 |
---|---|---|
committer | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2018-05-13 17:17:59 +0200 |
commit | 58a987f648b9042d7af5d170d538529c2029a0a2 (patch) | |
tree | c4ce2c7cd3933617910844b7b6ca35c150d9dfa3 /crafting.lua | |
parent | 5cddd2cd020ba1f3fe3ba88d7a4089d151e591d8 (diff) |
several bugfixes
Diffstat (limited to 'crafting.lua')
-rw-r--r-- | crafting.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/crafting.lua b/crafting.lua index f2e370d..ea78578 100644 --- a/crafting.lua +++ b/crafting.lua @@ -16,8 +16,10 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "default:wood", - recipe = {{"group:wood"},} + output = "default:wood 2", + recipe = { {"group:wood","",""}, + {"group:wood","",""}, + {"","",""}} }) minetest.register_craft({ |