summaryrefslogtreecommitdiff
path: root/mesecons_lightstone
diff options
context:
space:
mode:
authorRealBadAngel <mk@realbadangel.pl>2013-04-28 12:40:08 +0200
committerRealBadAngel <mk@realbadangel.pl>2013-04-28 12:40:08 +0200
commit255e363b04dbaa0e19f290d96512278a433570f9 (patch)
treeb5d70f8f3706fd5f0e1f17e7269bd1c7169d4e90 /mesecons_lightstone
parentac9a05df0b09e3e27b94f362037b725f67683706 (diff)
downloadmesecons-255e363b04dbaa0e19f290d96512278a433570f9.tar
mesecons-255e363b04dbaa0e19f290d96512278a433570f9.tar.gz
mesecons-255e363b04dbaa0e19f290d96512278a433570f9.tar.bz2
mesecons-255e363b04dbaa0e19f290d96512278a433570f9.tar.xz
mesecons-255e363b04dbaa0e19f290d96512278a433570f9.zip
Fix all crafting recipes to use modern style
Diffstat (limited to 'mesecons_lightstone')
-rw-r--r--mesecons_lightstone/init.lua30
1 files changed, 15 insertions, 15 deletions
diff --git a/mesecons_lightstone/init.lua b/mesecons_lightstone/init.lua
index 937c65f..f21f21c 100644
--- a/mesecons_lightstone/init.lua
+++ b/mesecons_lightstone/init.lua
@@ -13,7 +13,7 @@ function mesecon:lightstone_add(name, base_item, texture_off, texture_on)
minetest.register_node("mesecons_lightstone:lightstone_" .. name .. "_on", {
tiles = {texture_on},
groups = {cracky=2,not_in_creative_inventory=1, mesecon = 2},
- drop = "node mesecons_lightstone:lightstone_" .. name .. "_off 1",
+ drop = "mesecons_lightstone:lightstone_" .. name .. "_off",
light_source = LIGHT_MAX-2,
sounds = default.node_sound_stone_defaults(),
mesecons = {effector = {
@@ -21,21 +21,21 @@ function mesecon:lightstone_add(name, base_item, texture_off, texture_on)
mesecon:swap_node(pos, "mesecons_lightstone:lightstone_" .. name .. "_off")
end
}}
- })
+ })
- minetest.register_craft({
- output = "node mesecons_lightstone:lightstone_" .. name .. "_off 1",
- recipe = {
- {'',base_item,''},
- {base_item,'default:torch',base_item},
- {'','group:mesecon_conductor_craftable',''},
- }
- })
+ minetest.register_craft({
+ output = "mesecons_lightstone:lightstone_" .. name .. "_off",
+ recipe = {
+ {"",base_item,""},
+ {base_item,"default:torch",base_item},
+ {"","group:mesecon_conductor_craftable",""}
+ }
+ })
end
-mesecon:lightstone_add("red", "craft default:clay_brick 1", "jeija_lightstone_red_off.png", "jeija_lightstone_red_on.png")
-mesecon:lightstone_add("green", "node default:cactus 1", "jeija_lightstone_green_off.png", "jeija_lightstone_green_on.png")
-mesecon:lightstone_add("blue", "node mesecons_materials:fiber 1", "jeija_lightstone_blue_off.png", "jeija_lightstone_blue_on.png")
-mesecon:lightstone_add("gray", "node default:cobble 1", "jeija_lightstone_gray_off.png", "jeija_lightstone_gray_on.png")
-mesecon:lightstone_add("darkgray", "node default:gravel 1", "jeija_lightstone_darkgray_off.png", "jeija_lightstone_darkgray_on.png")
+mesecon:lightstone_add("red", "default:clay_brick", "jeija_lightstone_red_off.png", "jeija_lightstone_red_on.png")
+mesecon:lightstone_add("green", "default:cactus", "jeija_lightstone_green_off.png", "jeija_lightstone_green_on.png")
+mesecon:lightstone_add("blue", "mesecons_materials:fiber", "jeija_lightstone_blue_off.png", "jeija_lightstone_blue_on.png")
+mesecon:lightstone_add("gray", "default:cobble", "jeija_lightstone_gray_off.png", "jeija_lightstone_gray_on.png")
+mesecon:lightstone_add("darkgray", "default:gravel", "jeija_lightstone_darkgray_off.png", "jeija_lightstone_darkgray_on.png")