summaryrefslogtreecommitdiff
path: root/moreblocks/crafting.lua
diff options
context:
space:
mode:
authorVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-05-11 10:22:53 -0400
committerVanessa Dannenberg <vanessa.e.dannenberg@gmail.com>2018-05-11 10:22:53 -0400
commit249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3 (patch)
tree915217a9657158d2a02eb8d93507944f618d5142 /moreblocks/crafting.lua
parentaf2fedcf9998bb4a854c2cfd63e4cdad91a6dd5d (diff)
downloaddreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar.gz
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar.bz2
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.tar.xz
dreambuilder_modpack-249daeb0e6a7d9b637eeb4e5cfda4710a68d59d3.zip
Add readme.md mostly taken from the forum thread (and markdown-ified)
Updated several mods: castles, homedecor, digilines, farming redo, jumping, maptools, mesecons, moreblocks, moretrees, pipeworks, signs_lib, technic, unified_dyes Deleted the peaceful_npc mod, as it is broken and unmaintained.
Diffstat (limited to 'moreblocks/crafting.lua')
-rw-r--r--moreblocks/crafting.lua15
1 files changed, 8 insertions, 7 deletions
diff --git a/moreblocks/crafting.lua b/moreblocks/crafting.lua
index b6432c7..3fb9830 100644
--- a/moreblocks/crafting.lua
+++ b/moreblocks/crafting.lua
@@ -94,11 +94,11 @@ minetest.register_craft({
})
minetest.register_craft({
- output = "moreblocks:circle_stone_bricks 8",
+ output = "moreblocks:circle_stone_bricks 5",
recipe = {
- {"default:stone", "default:stone", "default:stone"},
- {"default:stone", "", "default:stone"},
- {"default:stone", "default:stone", "default:stone"},
+ {"", "default:stone", ""},
+ {"default:stone", "default:coal_lump", "default:stone"},
+ {"", "default:stone", ""},
}
})
@@ -156,10 +156,11 @@ minetest.register_craft({
})
minetest.register_craft({
- output = "moreblocks:stone_tile 4",
+ output = "moreblocks:stone_tile 9",
recipe = {
- {"default:cobble", "default:cobble"},
- {"default:cobble", "default:cobble"},
+ {"default:cobble", "default:cobble", "default:cobble"},
+ {"default:cobble", "default:stone", "default:cobble"},
+ {"default:cobble", "default:cobble", "default:cobble"},
}
})