Added missing whitespace

This commit is contained in:
cakeGit 2024-02-03 12:56:37 +00:00 committed by GitHub
parent 2201d87da7
commit ffd605f8ac
Failed to generate hash of commit

View file

@ -19,7 +19,7 @@ public abstract class TranslatingContraption extends Contraption {
return Collections.emptySet();
if (cachedColliders == null || cachedColliderDirection != movementDirection) {
cachedColliderDirection = movementDirection;
cachedColliders= createColliders(world, movementDirection);
cachedColliders = createColliders(world, movementDirection);
}
return cachedColliders;
}