diff options
author | Calinou <calinou@opmbx.org> | 2014-06-28 20:44:04 +0200 |
---|---|---|
committer | Calinou <calinou@opmbx.org> | 2014-06-28 20:44:04 +0200 |
commit | 6e1ed990843124217c012249a2f874ba88b6bc06 (patch) | |
tree | a62b1bdb5db53c0e99a3abb040969370fe129310 | |
parent | e2f4cc369b98cdb13791738d4aa70605670223db (diff) | |
download | moreblocks-6e1ed990843124217c012249a2f874ba88b6bc06.tar.gz moreblocks-6e1ed990843124217c012249a2f874ba88b6bc06.tar.bz2 moreblocks-6e1ed990843124217c012249a2f874ba88b6bc06.zip |
Give 2 grey bricks per craft.
-rw-r--r-- | crafting.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crafting.lua b/crafting.lua index f7ebe09..2047727 100644 --- a/crafting.lua +++ b/crafting.lua @@ -187,13 +187,13 @@ minetest.register_craft({ }) minetest.register_craft({ - output = "moreblocks:grey_bricks", + output = "moreblocks:grey_bricks 2", type = "shapeless", recipe = {"default:stone", "default:brick"}, }) minetest.register_craft({ - output = "moreblocks:grey_bricks", + output = "moreblocks:grey_bricks 2", type = "shapeless", recipe = {"default:stonebrick", "default:brick"}, }) |