Remove redundant loop

Closes #608
Closes #566
This commit is contained in:
Krapht 2013-01-28 20:01:13 +01:00
parent 2bd1e96e11
commit 9d20450f81

View file

@ -501,13 +501,6 @@ public class TileGenericPipe extends TileEntity implements IPowerReceptor, ITank
}
}
}
for (int i = 0; i < tileBuffer.length; ++i)
if (oldConnections[i] != pipeConnectionsBuffer[i]) {
Position pos = new Position(xCoord, yCoord, zCoord, ForgeDirection.VALID_DIRECTIONS[i]);
pos.moveForwards(1.0);
scheduleRenderUpdate();
}
}
}