diff options
| author | Tim <t4im@users.noreply.github.com> | 2015-02-08 12:24:13 +0100 | 
|---|---|---|
| committer | Tim <t4im@users.noreply.github.com> | 2015-02-08 12:27:10 +0100 | 
| commit | ce40d1cfb839440367c0ac6f1c203f7e838b03fd (patch) | |
| tree | b49c165691c4ccadc9497af005e7029e9c6c9b20 | |
| parent | 5ac93cccc9163a65e7e53e714f5e965ada2c070d (diff) | |
add group tubedevice_receiver to injector to fix the issue of it acting more like a tube than an inventory
it sent the items into all directions, when being injected into, instead of entering the injector as it used to
| -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 96d036f..ff4accf 100644 --- a/technic/machines/other/injector.lua +++ b/technic/machines/other/injector.lua @@ -65,7 +65,7 @@ minetest.register_node("technic:injector", {  	description = S("Self-Contained 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}, +	groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, tubedevice=1, tubedevice_receiver=1},  	tube = {connect_sides={bottom=1}},  	sounds = default.node_sound_wood_defaults(),  	on_construct = function(pos)  | 
