summaryrefslogtreecommitdiff
path: root/items.lua
diff options
context:
space:
mode:
authorMaciej Kasatkin <mk@realbadangel.pl>2012-10-09 11:02:29 +0200
committerMaciej Kasatkin <mk@realbadangel.pl>2012-10-09 11:02:29 +0200
commiteabde42244a4f541c13ee8f39b3542fb26d8af9b (patch)
treece8d367f434ce0d3a8684227396a460529a21efc /items.lua
parentef174a7deeb362e8519b25b09c7cf45730468d24 (diff)
several fixes, brass added
Diffstat (limited to 'items.lua')
-rw-r--r--items.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/items.lua b/items.lua
index f61fd6a..0773d1f 100644
--- a/items.lua
+++ b/items.lua
@@ -55,9 +55,9 @@ minetest.register_node( "technic:diamond_block", {
minetest.register_craft({
output = 'technic:red_energy_crystal',
recipe = {
- {'moreores:gold_ingot', 'technic:battery', 'dye:red'},
+ {'moreores:gold_ingot', 'technic:battery', 'group:dye,basecolor_red'},
{'technic:battery', 'technic:diamond_block', 'technic:battery'},
- {'dye:red', 'technic:battery', 'moreores:gold_ingot'},
+ {'group:dye,basecolor_red', 'technic:battery', 'moreores:gold_ingot'},
}
})
@@ -70,9 +70,9 @@ minetest.register_craftitem( "technic:red_energy_crystal", {
minetest.register_craft({
output = 'technic:green_energy_crystal',
recipe = {
- {'moreores:gold_ingot', 'technic:battery', 'dye:green'},
+ {'moreores:gold_ingot', 'technic:battery', 'group:dye,basecolor_green'},
{'technic:battery', 'technic:red_energy_crystal', 'technic:battery'},
- {'dye:green', 'technic:battery', 'moreores:gold_ingot'},
+ {'group:dye,basecolor_green', 'technic:battery', 'moreores:gold_ingot'},
}
})
@@ -85,9 +85,9 @@ minetest.register_craftitem( "technic:green_energy_crystal", {
minetest.register_craft({
output = 'technic:blue_energy_crystal',
recipe = {
- {'moreores:gold_ingot', 'technic:battery', 'dye:blue'},
+ {'moreores:gold_ingot', 'technic:battery', 'group:dye,basecolor_blue'},
{'technic:battery', 'technic:green_energy_crystal', 'technic:battery'},
- {'dye:blue', 'technic:battery', 'moreores:gold_ingot'},
+ {'group:dye,basecolor_green', 'technic:battery', 'moreores:gold_ingot'},
}
})