diff options
author | ShadowNinja <noreply@gmail.com> | 2013-10-30 15:18:18 -0400 |
---|---|---|
committer | ShadowNinja <noreply@gmail.com> | 2013-10-30 15:18:18 -0400 |
commit | 2d7c1d725287b845af88a1b05b25c9e282d2310d (patch) | |
tree | eeac17979cbfb88d64f07935e58ff52fcfb0a1fe | |
parent | f90915c40856b41f818847be680b466765f01f50 (diff) |
Readd craft recipe for the Mk1 mining laser
-rw-r--r-- | technic/tools/mining_lasers.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/technic/tools/mining_lasers.lua b/technic/tools/mining_lasers.lua index c7f4ba8..caa416f 100644 --- a/technic/tools/mining_lasers.lua +++ b/technic/tools/mining_lasers.lua @@ -14,6 +14,16 @@ local f_2 = 0.5 + r_corr local S = technic.getter +minetest.register_craft({ + output = 'technic:laser_mk1', + recipe = { + {'default:diamond', 'default:steel_ingot', 'technic:battery'}, + {'', 'default:steel_ingot', 'technic:battery'}, + {'', '', 'default:copper_ingot'}, + } +}) + + local function get_used_dir(dir) local abs_dir = {x = math.abs(dir.x), y = math.abs(dir.y), |