summaryrefslogtreecommitdiff
path: root/mesecons_switch
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_switch
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_switch')
-rw-r--r--mesecons_switch/init.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/mesecons_switch/init.lua b/mesecons_switch/init.lua
index 0ec5a27..ec04f0a 100644
--- a/mesecons_switch/init.lua
+++ b/mesecons_switch/init.lua
@@ -20,7 +20,7 @@ minetest.register_node("mesecons_switch:mesecon_switch_on", {
tiles = {"jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_side.png", "jeija_mesecon_switch_on.png"},
paramtype2="facedir",
groups = {dig_immediate=2,not_in_creative_inventory=1},
- drop='"mesecons_switch:mesecon_switch_off" 1',
+ drop="mesecons_switch:mesecon_switch_off 1",
sounds = default.node_sound_stone_defaults(),
mesecons = {receptor = {
state = mesecon.state.on
@@ -33,9 +33,9 @@ minetest.register_node("mesecons_switch:mesecon_switch_on", {
})
minetest.register_craft({
- output = '"mesecons_switch:mesecon_switch_off" 2',
+ output = "mesecons_switch:mesecon_switch_off 2",
recipe = {
- {'"default:steel_ingot"', '"default:cobble"', '"default:steel_ingot"'},
- {'"group:mesecon_conductor_craftable"','', '"group:mesecon_conductor_craftable"'},
+ {"default:steel_ingot", "default:cobble", "default:steel_ingot"},
+ {"group:mesecon_conductor_craftable","", "group:mesecon_conductor_craftable"},
}
})