Merge pull request #6065 from cakeGit/patch-1

Added missing whitespace to TranslatingContraption.java
This commit is contained in:
simibubi 2024-07-25 18:36:42 +02:00 committed by GitHub
commit 7582646e37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -21,7 +21,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;
}