Fixed the crafting for mining_drill mk3
authorJonathan Raphael Joachim Kolberg <bulldog98@kubuntu-de.org>
Sun, 28 Jul 2013 10:45:53 +0000 (12:45 +0200)
committerJonathan Raphael Joachim Kolberg <bulldog98@kubuntu-de.org>
Sun, 28 Jul 2013 10:45:53 +0000 (12:45 +0200)
technic/tools/mining_drill.lua

index 860127f8fcbe7559e5ffefaffeb3114c302b9723..1d57e70e566252b9cc89a9b7375fc6f42b01ad90 100644 (file)
@@ -29,6 +29,16 @@ minetest.register_craft({
                {'',                                                            'technic:blue_energy_crystal',  ''},
        }
 })
+for i=1,4,1 do
+minetest.register_craft({
+       output = 'technic:mining_drill_mk3',
+       recipe = {
+               {'technic:diamond_drill_head' ,         'technic:diamond_drill_head' ,  'technic:diamond_drill_head' },
+               {'technic:stainless_steel_ingot',       'technic:mining_drill_mk2_'..i, 'technic:stainless_steel_ingot' },
+               {'',                                    'technic:blue_energy_crystal',  ''},
+       }
+})
+end
 
 function drill_dig_it (pos, player,drill_type,mode)