diff options
author | RealBadAngel <mk@realbadangel.pl> | 2013-02-03 13:02:22 +0100 |
---|---|---|
committer | RealBadAngel <mk@realbadangel.pl> | 2013-02-03 13:02:22 +0100 |
commit | 91cdd1694a8c06277dfbb1ce8d194f26f9013355 (patch) | |
tree | 6e35c098a11916e662d5c4aeafa0d8444859e7d4 | |
parent | 74cf4746bed6fe3a4fec2b29e7456cce98bdd9b0 (diff) |
Added crafting recipe for Injector
-rw-r--r-- | technic/injector.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/technic/injector.lua b/technic/injector.lua index 0691777..4cc6066 100644 --- a/technic/injector.lua +++ b/technic/injector.lua @@ -3,6 +3,16 @@ minetest.register_craftitem("technic:injector", { stack_max = 99, }) +minetest.register_craft({ + output = 'technic:injector 1', + recipe = { + {'', 'technic:control_logic_unit',''}, + {'', 'default:chest',''}, + {'', 'pipeworks:tube_000000',''}, + + } +}) + minetest.register_node("technic:injector", { description = "Injector", tiles = {"technic_injector_top.png", "technic_injector_bottom.png", "technic_injector_side.png", |