diff --git a/src/main/java/de/ellpeck/prettypipes/pipe/PipeBlock.java b/src/main/java/de/ellpeck/prettypipes/pipe/PipeBlock.java index da41b52..37f6734 100644 --- a/src/main/java/de/ellpeck/prettypipes/pipe/PipeBlock.java +++ b/src/main/java/de/ellpeck/prettypipes/pipe/PipeBlock.java @@ -89,14 +89,6 @@ public class PipeBlock extends ContainerBlock { } } - @Override - public BlockState updatePostPlacement(BlockState stateIn, Direction facing, BlockState facingState, IWorld worldIn, BlockPos currentPos, BlockPos facingPos) { - ConnectionType type = getConnectionType((World) worldIn, currentPos, facing, stateIn); - if (type != stateIn.get(DIRECTIONS.get(facing))) - stateIn = stateIn.with(DIRECTIONS.get(facing), type); - return stateIn; - } - @Nullable @Override public BlockState getStateForPlacement(BlockItemUseContext context) {