From d33fb21a7b81465ce46710fa33598ff9cc091947 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Sun, 28 Jun 2020 13:42:35 -0400 Subject: [PATCH] Reformat Code --- .../com/thebrokenrail/twine/block/GlowingObsidianBlock.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/thebrokenrail/twine/block/GlowingObsidianBlock.java b/src/main/java/com/thebrokenrail/twine/block/GlowingObsidianBlock.java index 708ff52..7aad560 100644 --- a/src/main/java/com/thebrokenrail/twine/block/GlowingObsidianBlock.java +++ b/src/main/java/com/thebrokenrail/twine/block/GlowingObsidianBlock.java @@ -30,7 +30,7 @@ public class GlowingObsidianBlock extends Block { public void onSteppedOn(World world, BlockPos pos, Entity entity) { super.onSteppedOn(world, pos, entity); if (!world.isClient() && entity instanceof LivingEntity) { - ((ServerWorld) world).spawnParticles(ParticleTypes.SMOKE, pos.getX() + 0.5d, pos.getY() + 1d, pos.getZ() + 0.5d, 3 + world.getRandom().nextInt(3), 0.2d, 0.5d, 0.2d,0.01d); + ((ServerWorld) world).spawnParticles(ParticleTypes.SMOKE, pos.getX() + 0.5d, pos.getY() + 1d, pos.getZ() + 0.5d, 3 + world.getRandom().nextInt(3), 0.2d, 0.5d, 0.2d, 0.01d); if (entity.age % 10 == 0) { final float amount = 2f; if (entity instanceof Monster) {