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_materials | |
| parent | ac9a05df0b09e3e27b94f362037b725f67683706 (diff) | |
| parent | 255e363b04dbaa0e19f290d96512278a433570f9 (diff) | |
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_materials')
| -rw-r--r-- | mesecons_materials/init.lua | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/mesecons_materials/init.lua b/mesecons_materials/init.lua index bebc994..f95373c 100644 --- a/mesecons_materials/init.lua +++ b/mesecons_materials/init.lua @@ -12,14 +12,14 @@ minetest.register_craftitem("mesecons_materials:fiber", {  })  minetest.register_craft({ -	output = '"mesecons_materials:glue" 2', +	output = "mesecons_materials:glue 2",  	type = "cooking",  	recipe = "default:sapling",  	cooktime = 2  })  minetest.register_craft({ -	output = '"mesecons_materials:fiber" 6', +	output = "mesecons_materials:fiber 6",  	type = "cooking",  	recipe = "mesecons_materials:glue",  	cooktime = 4 @@ -33,9 +33,9 @@ minetest.register_craftitem("mesecons_materials:silicon", {  })  minetest.register_craft({ -	output = '"mesecons_materials:silicon" 4', +	output = "mesecons_materials:silicon 4",  	recipe = { -		{'"default:sand"', '"default:sand"'}, -		{'"default:sand"', '"default:steel_ingot"'}, +		{"default:sand", "default:sand"}, +		{"default:sand", "default:steel_ingot"},  	}  })  | 
