Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions technic/machines/register/common.lua
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ function technic.handle_machine_pipeworks(pos, tube_upgrade, send_function)
local z_velocity = 0

-- Output is on the left side of the furnace
if node.param2 == 3 then pos1.z = pos1.z - 1 z_velocity = -1 end
if node.param2 == 3 then pos1.z = pos1.z + 1 z_velocity = 1 end
if node.param2 == 2 then pos1.x = pos1.x - 1 x_velocity = -1 end
if node.param2 == 1 then pos1.z = pos1.z + 1 z_velocity = 1 end
if node.param2 == 1 then pos1.z = pos1.z - 1 z_velocity = -1 end
if node.param2 == 0 then pos1.x = pos1.x + 1 x_velocity = 1 end

local output_tube_connected = false
Expand Down