diff options
author | Boba <Boba@boba-xp01> | 2014-04-14 19:58:50 +0200 |
---|---|---|
committer | ShadowNinja <shadowninja@minetest.net> | 2014-04-14 20:54:28 -0400 |
commit | 44dbc75b6115d5235ba0538925e44484037459a1 (patch) | |
tree | 7ccd66b47f8add41b876c9f07b16e04da967b1f6 | |
parent | 061d1a3ab4e7c44568d3476e2f1ac716afb3827e (diff) |
Fix typo in frame and template motor recipes
-rw-r--r-- | technic/machines/other/frames.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/technic/machines/other/frames.lua b/technic/machines/other/frames.lua index b8b4305..e95696f 100644 --- a/technic/machines/other/frames.lua +++ b/technic/machines/other/frames.lua @@ -877,7 +877,7 @@ minetest.register_craft({ output = 'technic:frame_motor', recipe = { {'', 'technic:frame_111111', ''}, - {'group:mesecons_conductor_craftable', 'technic:motor', 'group:mesecons_conductor_craftable'}, + {'group:mesecon_conductor_craftable', 'technic:motor', 'group:mesecon_conductor_craftable'}, {'', 'technic:frame_111111', ''}, } }) @@ -905,7 +905,7 @@ minetest.register_craft({ output = 'technic:template_motor', recipe = { {'', 'technic:template', ''}, - {'group:mesecons_conductor_craftable', 'technic:motor', 'group:mesecons_conductor_craftable'}, + {'group:mesecon_conductor_craftable', 'technic:motor', 'group:mesecon_conductor_craftable'}, {'', 'technic:template', ''}, } }) |