summaryrefslogtreecommitdiff
path: root/technic_worldgen/crafts.lua
diff options
context:
space:
mode:
Diffstat (limited to 'technic_worldgen/crafts.lua')
-rw-r--r--technic_worldgen/crafts.lua11
1 files changed, 6 insertions, 5 deletions
diff --git a/technic_worldgen/crafts.lua b/technic_worldgen/crafts.lua
index 176218d..668b659 100644
--- a/technic_worldgen/crafts.lua
+++ b/technic_worldgen/crafts.lua
@@ -34,6 +34,7 @@ minetest.register_craftitem( ":technic:stainless_steel_ingot", {
minetest.register_craftitem( ":technic:brass_ingot", {
description = "Brass Ingot",
inventory_image = "technic_brass_ingot.png",
+ groups = {brass_ingot=1}
})
minetest.register_craft({
@@ -86,14 +87,14 @@ minetest.register_craft({
minetest.register_craft({
output = "node technic:brass_block",
- recipe = {{"technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot"},
- {"technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot"},
- {"technic:brass_ingot", "technic:brass_ingot", "technic:brass_ingot"}}
+ recipe = {{"group:brass_ingot", "group:brass_ingot", "group:brass_ingot"},
+ {"group:brass_ingot", "group:brass_ingot", "group:brass_ingot"},
+ {"group:brass_ingot", "group:brass_ingot", "group:brass_ingot"}}
})
minetest.register_craft({
output = "craft technic:brass_ingot 9",
- recipe = {{"technic:brass_block"}}
+ recipe = {{"group:brass_block"}}
})
minetest.register_craft({
@@ -106,4 +107,4 @@ minetest.register_craft({
type = 'cooking',
output = "technic:chromium_ingot",
recipe = "technic:chromium_lump"
-}) \ No newline at end of file
+})