diff options
author | Calinou <calinou9999spam@gmail.com> | 2013-11-24 10:33:38 -0800 |
---|---|---|
committer | Calinou <calinou9999spam@gmail.com> | 2013-11-24 10:33:38 -0800 |
commit | 360338f38f24020ad301ac339c873dddd57e41f2 (patch) | |
tree | 0828257e985a7ad1762cc6a39a2e862fe3edd2d3 /crafting.lua | |
parent | 92e4dc8e29954e1f07776a96eb6cb69b01dd6d5b (diff) | |
parent | 06ece220b723ce8a08c371c9e66d2ad1e7c9f519 (diff) |
Merge pull request #4 from Jat15/Patch-1
Add Coal Stone Bricks and modify the recipe of Iron Stone Bricks
Diffstat (limited to 'crafting.lua')
-rw-r--r-- | crafting.lua | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/crafting.lua b/crafting.lua index acdd57a..8019772 100644 --- a/crafting.lua +++ b/crafting.lua @@ -176,9 +176,19 @@ minetest.register_craft({ }) minetest.register_craft({ + output = "moreblocks:coal_stone_bricks 1", + recipe = { + {"moreblocks:coal_stone", "moreblocks:coal_stone"}, + {"moreblocks:coal_stone", "moreblocks:coal_stone"}, + } +}) + +minetest.register_craft({ output = "moreblocks:iron_stone_bricks 1", - type = "shapeless", - recipe = {"default:steel_ingot", "default:stonebrick"}, + recipe = { + {"moreblocks:iron_stone", "moreblocks:iron_stone"}, + {"moreblocks:iron_stone", "moreblocks:iron_stone"}, + } }) minetest.register_craft({ |