From 8d04582962e5fd6719d36227e600c9f88616baf8 Mon Sep 17 00:00:00 2001 From: JustAGenericUsername <92590792+JustAGenericUsername@users.noreply.github.com> Date: Fri, 10 Jan 2025 20:32:45 -0500 Subject: [PATCH] h --- mods/nousersthings.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mods/nousersthings.js b/mods/nousersthings.js index fa47fc1f..89c8e96a 100644 --- a/mods/nousersthings.js +++ b/mods/nousersthings.js @@ -3779,9 +3779,10 @@ elements.pipe_transmitter = { for (x in pixelMap){ for (y in pixelMap[x]){ if (!isEmpty(x, y, true)){ - if (pixelMap[x][y].element == "pipe_receiver" && pixelMap[x][y].channel == pixel.channel){ + if (pixelMap[x][y].element == "pipe_receiver" && pixelMap[x][y].channel == pixel.channel && !pixelMap[x][y].con){ pixelMap[x][y].con = pixel.con; delete pixel.con; + break; } } }