diff --git a/common/src/main/kotlin/quaedam/misc/cts/CTSBlock.kt b/common/src/main/kotlin/quaedam/misc/cts/CTSBlock.kt index 89ec2ba..c11156b 100644 --- a/common/src/main/kotlin/quaedam/misc/cts/CTSBlock.kt +++ b/common/src/main/kotlin/quaedam/misc/cts/CTSBlock.kt @@ -54,12 +54,12 @@ object CTSBlock : HorizontalDirectionalBlock( when (state.getValue(FACING)) { Direction.WEST, Direction.EAST -> Shapes.or( box(0.0, 0.0, 0.0, 16.0, 12.0, 16.0), - box(6.0, 13.0, 7.0, 10.0, 15.0, 9.0), + box(7.0, 13.0, 6.0, 9.0, 15.0, 10.0), ) Direction.SOUTH, Direction.NORTH -> Shapes.or( box(0.0, 0.0, 0.0, 16.0, 12.0, 16.0), - box(7.0, 13.0, 6.0, 9.0, 15.0, 10.0), + box(6.0, 13.0, 7.0, 10.0, 15.0, 9.0), ) else -> throw IllegalStateException(state.getValue(FACING).name)