diff options
author | Zefram <zefram@fysh.org> | 2014-04-25 23:18:50 +0100 |
---|---|---|
committer | Zefram <zefram@fysh.org> | 2014-04-30 00:21:36 +0100 |
commit | ca69473664d4212aa787e4dca3cd7a918788c724 (patch) | |
tree | a9d87f4553ddffe4bf7ff770e2adaf640c22dfb9 | |
parent | 1a94fdc601e3624e0cc52e0873fc2a031fd61b0a (diff) |
fix tube properties for injector
By relying on another no-longer-extant definition, the injector didn't
visually connect to the tube below it.
-rw-r--r-- | technic/machines/other/injector.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/technic/machines/other/injector.lua b/technic/machines/other/injector.lua index c334d9b..c131470 100644 --- a/technic/machines/other/injector.lua +++ b/technic/machines/other/injector.lua @@ -59,7 +59,7 @@ minetest.register_node("technic:injector", { tiles = {"technic_injector_top.png", "technic_injector_bottom.png", "technic_injector_side.png", "technic_injector_side.png", "technic_injector_side.png", "technic_injector_side.png"}, groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, tubedevice=1}, - tube = tubes_properties, + tube = {connect_sides={bottom=1}}, sounds = default.node_sound_wood_defaults(), on_construct = function(pos) local meta = minetest.env:get_meta(pos) |