diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2015-02-01 12:24:20 -0500 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2015-02-01 12:24:20 -0500 |
commit | 5114dfe5f411be017ee5bde3222b3fb51007eaa3 (patch) | |
tree | 14556834ecd624e8f3c0cd350c711f3f33149dcb | |
parent | 4379b1904ddaccb1763ccba03ec0acac377d0128 (diff) | |
download | pipeworks-5114dfe5f411be017ee5bde3222b3fb51007eaa3.tar pipeworks-5114dfe5f411be017ee5bde3222b3fb51007eaa3.tar.gz pipeworks-5114dfe5f411be017ee5bde3222b3fb51007eaa3.tar.bz2 pipeworks-5114dfe5f411be017ee5bde3222b3fb51007eaa3.tar.xz pipeworks-5114dfe5f411be017ee5bde3222b3fb51007eaa3.zip |
fix recipe in panel tube
-rw-r--r-- | decorative_tubes.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/decorative_tubes.lua b/decorative_tubes.lua index 90e92d9..5bf7bf9 100644 --- a/decorative_tubes.lua +++ b/decorative_tubes.lua @@ -72,8 +72,8 @@ minetest.register_node("pipeworks:steel_pane_embedded_tube", { minetest.register_craft( { output = "pipeworks:steel_pane_embedded_tube 1", recipe = { - { "", "pipeworks:tube_1t", "" }, - { "default:steel_ingot", "pipeworks:tube_1", "default:steel_ingot" }, - { "", "pipeworks:tube_1", "" } + { "", "default:steel_ingot", "" }, + { "", "pipeworks:tube_1", "" }, + { "", "default:steel_ingot", "" } }, }) |