Skip to content

Commit a575d69

Browse files
authored
fix: crushing wheel not checking that other wheel is actually spinning (#8947)
1 parent 97976ae commit a575d69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/simibubi/create/content/kinetics/crusher/CrushingWheelBlock.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public void updateControllers(BlockState state, Level world, BlockPos pos, Direc
8484
CrushingWheelBlockEntity otherBE = getBlockEntity(world, otherWheelPos);
8585

8686
if (be != null && otherBE != null && (be.getSpeed() > 0) != (otherBE.getSpeed() > 0)
87-
&& be.getSpeed() != 0) {
87+
&& be.getSpeed() != 0 && otherBE.getSpeed() != 0) {
8888
Axis wheelAxis = state.getValue(AXIS);
8989
Axis sideAxis = side.getAxis();
9090
int controllerADO = Math.round(Math.signum(be.getSpeed())) * side.getAxisDirection()

0 commit comments

Comments
 (0)