mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 13:52:31 +01:00
Readd craft recipe for the Mk1 mining laser
This commit is contained in:
parent
f90915c408
commit
2d7c1d7252
@ -14,6 +14,16 @@ local f_2 = 0.5 + r_corr
|
|||||||
|
|
||||||
local S = technic.getter
|
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 function get_used_dir(dir)
|
||||||
local abs_dir = {x = math.abs(dir.x),
|
local abs_dir = {x = math.abs(dir.x),
|
||||||
y = math.abs(dir.y),
|
y = math.abs(dir.y),
|
||||||
|
Loading…
Reference in New Issue
Block a user