diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2016-05-17 21:40:05 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2016-05-17 21:40:05 +0100 |
commit | b1f0ded17316dcaf729c3dc2d7d21aed70c2b7ca (patch) | |
tree | adc72eb32963a67a19863bc8e3060cb4b7df1d1b /crystal.lua | |
parent | c47c840f2aaf35c9ea284be191798cb3a566b175 (diff) |
Ethereal NG 1.20 release for minetest 0.4.14
Diffstat (limited to 'crystal.lua')
-rw-r--r-- | crystal.lua | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/crystal.lua b/crystal.lua index f5eb490..38c02e2 100644 --- a/crystal.lua +++ b/crystal.lua @@ -28,9 +28,8 @@ minetest.register_craftitem("ethereal:crystal_ingot", { minetest.register_craft({ output = "ethereal:crystal_ingot", recipe = { - {"default:mese_crystal", "ethereal:crystal_spike", ""}, - {"ethereal:crystal_spike", "default:mese_crystal", ""}, - {"", "", ""}, + {"default:mese_crystal", "ethereal:crystal_spike"}, + {"ethereal:crystal_spike", "default:mese_crystal"}, } }) @@ -82,9 +81,9 @@ minetest.register_tool("ethereal:sword_crystal", { minetest.register_craft({ output = "ethereal:sword_crystal", recipe = { - {"", "ethereal:crystal_ingot", ""}, - {"", "ethereal:crystal_ingot", ""}, - {"", "default:steel_ingot", ""}, + {"ethereal:crystal_ingot"}, + {"ethereal:crystal_ingot"}, + {"default:steel_ingot"}, } }) @@ -186,9 +185,9 @@ minetest.register_tool("ethereal:shovel_crystal", { minetest.register_craft({ output = "ethereal:shovel_crystal", recipe = { - {"", "ethereal:crystal_ingot", ""}, - {"", "default:steel_ingot", ""}, - {"", "default:steel_ingot", ""}, + {"ethereal:crystal_ingot"}, + {"default:steel_ingot"}, + {"default:steel_ingot"}, } }) |