diff options
author | RealBadAngel <mk@realbadangel.pl> | 2013-04-28 12:40:08 +0200 |
---|---|---|
committer | RealBadAngel <mk@realbadangel.pl> | 2013-04-28 12:40:08 +0200 |
commit | 255e363b04dbaa0e19f290d96512278a433570f9 (patch) | |
tree | b5d70f8f3706fd5f0e1f17e7269bd1c7169d4e90 /mesecons_torch | |
parent | ac9a05df0b09e3e27b94f362037b725f67683706 (diff) |
Fix all crafting recipes to use modern style
Diffstat (limited to 'mesecons_torch')
-rw-r--r-- | mesecons_torch/init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesecons_torch/init.lua b/mesecons_torch/init.lua index 801220e..77777db 100644 --- a/mesecons_torch/init.lua +++ b/mesecons_torch/init.lua @@ -35,7 +35,7 @@ local torch_get_input_rules = function(node) end minetest.register_craft({ - output = '"mesecons_torch:mesecon_torch_on" 4', + output = "mesecons_torch:mesecon_torch_on 4", recipe = { {"group:mesecon_conductor_craftable"}, {"default:stick"},} |