diff options
author | VanessaE <vanessaezekowitz@gmail.com> | 2013-04-28 04:18:37 -0700 |
---|---|---|
committer | VanessaE <vanessaezekowitz@gmail.com> | 2013-04-28 04:18:37 -0700 |
commit | 6f83f4cf1ed616d0c74cfc3cd63a170f822b1046 (patch) | |
tree | b5d70f8f3706fd5f0e1f17e7269bd1c7169d4e90 /mesecons_blinkyplant | |
parent | ac9a05df0b09e3e27b94f362037b725f67683706 (diff) | |
parent | 255e363b04dbaa0e19f290d96512278a433570f9 (diff) | |
download | mesecons-6f83f4cf1ed616d0c74cfc3cd63a170f822b1046.tar mesecons-6f83f4cf1ed616d0c74cfc3cd63a170f822b1046.tar.gz mesecons-6f83f4cf1ed616d0c74cfc3cd63a170f822b1046.tar.bz2 mesecons-6f83f4cf1ed616d0c74cfc3cd63a170f822b1046.tar.xz mesecons-6f83f4cf1ed616d0c74cfc3cd63a170f822b1046.zip |
Merge pull request #100 from RealBadAngel/master
Update crafting recipes - pretty much all of Mesecons recipes still used an old, now deprecated syntax substantially of the form 'node "default:xxxx" 2' (with two pairs of quotes). All such recipes have been changed to use the current method, i.e. "default:xxxx 2" (with one pair of quotes encompassing the whole itemstack).
Diffstat (limited to 'mesecons_blinkyplant')
-rw-r--r-- | mesecons_blinkyplant/init.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mesecons_blinkyplant/init.lua b/mesecons_blinkyplant/init.lua index 429a220..8908d33 100644 --- a/mesecons_blinkyplant/init.lua +++ b/mesecons_blinkyplant/init.lua @@ -27,7 +27,7 @@ minetest.register_node("mesecons_blinkyplant:blinky_plant_on", { paramtype = "light", walkable = false, groups = {dig_immediate=3, not_in_creative_inventory=1, mesecon = 2}, - drop='"mesecons_blinkyplant:blinky_plant_off" 1', + drop="mesecons_blinkyplant:blinky_plant_off 1", light_source = LIGHT_MAX-7, description = "Blinky Plant", sounds = default.node_sound_leaves_defaults(), @@ -41,11 +41,11 @@ minetest.register_node("mesecons_blinkyplant:blinky_plant_on", { }) minetest.register_craft({ - output = '"mesecons_blinkyplant:blinky_plant_off" 1', + output = "mesecons_blinkyplant:blinky_plant_off 1", recipe = { - {'','"group:mesecon_conductor_craftable"',''}, - {'','"group:mesecon_conductor_craftable"',''}, - {'"default:sapling"','"default:sapling"','"default:sapling"'}, + {"","group:mesecon_conductor_craftable",""}, + {"","group:mesecon_conductor_craftable",""}, + {"default:sapling","default:sapling","default:sapling"}, } }) |