Skip to content

Commit 65d9152

Browse files
committed
Fix formatting yet again
1 parent 2f1ae67 commit 65d9152

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/com/simibubi/create/content/kinetics/press/PressingBehaviour.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,8 @@ public void tick() {
176176
if (onBasin())
177177
applyOnBasin();
178178

179-
if (level.getBlockState(worldPosition.below(2)).getSoundType() == SoundType.WOOL)
179+
if (level.getBlockState(worldPosition.below(2))
180+
.getSoundType() == SoundType.WOOL)
180181
AllSoundEvents.MECHANICAL_PRESS_ACTIVATION_ON_BELT.playOnServer(level, worldPosition);
181182
else
182183
AllSoundEvents.MECHANICAL_PRESS_ACTIVATION.playOnServer(level, worldPosition, .5f,
@@ -257,7 +258,7 @@ protected void spawnParticles() {
257258
.add(0, 8 / 16f, 0), stack));
258259
if (mode == Mode.WORLD)
259260
particleItems.forEach(stack -> makePressingParticleEffect(VecHelper.getCenterOf(worldPosition.below(1))
260-
.add(0, -1 / 4f, 0), stack));
261+
.add(0, -1 / 4f, 0), stack));
261262

262263
particleItems.clear();
263264
}

0 commit comments

Comments
 (0)