This commit is contained in:
JustAGenericUsername 2025-01-10 20:32:45 -05:00
parent ad2ff96830
commit 8d04582962
1 changed files with 2 additions and 1 deletions

View File

@ -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;
}
}
}