kpoppel
2013-07-08 13e8857f1a6cc313847aaf330b7ad6ef5db8a901
Fix HV battery box and some indentation.
Bug found by pagliaccio.
2 files modified
11 ■■■■ changed files
technic/battery_box_hv.lua 8 ●●●● patch | view | raw | blame | history
technic/battery_box_mv.lua 3 ●●●● patch | view | raw | blame | history
technic/battery_box_hv.lua
@@ -1,9 +1,9 @@
-- HV battery box
minetest.register_craft({
               output = 'technic:hv_battery_box 1',
minetest.register_craft(
   {output = 'technic:hv_battery_box 1',
               recipe = {
                  {'technic:mv_battery_box', 'technic:mv_battery_box', 'mv_technic:battery_box'},
                  {'technic:mv_battery_box', 'technic:hv_transformer', 'mv_technic:battery_box'},
       {'technic:mv_battery_box', 'technic:mv_battery_box', 'technic:mv_battery_box'},
       {'technic:mv_battery_box', 'technic:hv_transformer', 'technic:mv_battery_box'},
                  {'', 'technic:hv_cable', ''},
               }
            })
technic/battery_box_mv.lua
@@ -1,7 +1,6 @@
-- MV Battery box
minetest.register_craft(
   {
      output = 'technic:mv_battery_box 1',
   {output = 'technic:mv_battery_box 1',
      recipe = {
     {'technic:battery_box', 'technic:battery_box', 'technic:battery_box'},
     {'technic:battery_box', 'technic:mv_transformer', 'technic:battery_box'},