diff options
author | Jat <jinan15@hotmail.com> | 2013-11-03 00:41:08 +0100 |
---|---|---|
committer | Jat <jinan15@hotmail.com> | 2013-11-03 00:41:08 +0100 |
commit | 06ece220b723ce8a08c371c9e66d2ad1e7c9f519 (patch) | |
tree | 9af818ef61b289bf178a69c45487283fa17d491c /crafting.lua | |
parent | 524dcb1396aa9df0f60c6f74d91c2e24c19e9ad6 (diff) |
Add Coal Stone Bricks ( old Stone Bricks) and modify craft 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 0410ad0..d8abfef 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({ |