diff --git a/src/main/java/gregtech/common/pipelike/cable/net/EnergyNetWalker.java b/src/main/java/gregtech/common/pipelike/cable/net/EnergyNetWalker.java index 891db184e48..fd0a1298296 100644 --- a/src/main/java/gregtech/common/pipelike/cable/net/EnergyNetWalker.java +++ b/src/main/java/gregtech/common/pipelike/cable/net/EnergyNetWalker.java @@ -53,7 +53,7 @@ protected void checkNeighbour(IPipeTile pipeTile, BlockPos pipePos, EnumFa if (neighbourTile != null) { IEnergyContainer container = neighbourTile.getCapability(GregtechCapabilities.CAPABILITY_ENERGY_CONTAINER, faceToNeighbour.getOpposite()); if (container != null) { - routes.add(new RoutePath(pipePos, faceToNeighbour, new HashSet<>(pipes), getWalkedBlocks(), loss)); + routes.add(new RoutePath(new BlockPos(pipePos), faceToNeighbour, new HashSet<>(pipes), getWalkedBlocks(), loss)); } } }