aboutsummaryrefslogtreecommitdiff
path: root/crafting.lua
diff options
context:
space:
mode:
Diffstat (limited to 'crafting.lua')
-rw-r--r--crafting.lua17
1 files changed, 17 insertions, 0 deletions
diff --git a/crafting.lua b/crafting.lua
index 2047727..d8a006d 100644
--- a/crafting.lua
+++ b/crafting.lua
@@ -433,6 +433,23 @@ minetest.register_craft({
})
minetest.register_craft({
+ output = "moreblocks:cobble_compressed",
+ recipe = {
+ {"default:cobble", "default:cobble", "default:cobble"},
+ {"default:cobble", "default:cobble", "default:cobble"},
+ {"default:cobble", "default:cobble", "default:cobble"},
+ }
+})
+
+minetest.register_craft({
+ output = "default:cobble 9",
+ recipe = {
+ {"moreblocks:cobble_compressed"},
+ }
+})
+
+
+minetest.register_craft({
type = "cooking", output = "moreblocks:tar", recipe = "default:gravel",
})