diff --git a/src/main/java/thebetweenlands/common/block/terrain/BlockSwampWater.java b/src/main/java/thebetweenlands/common/block/terrain/BlockSwampWater.java index d89d15514..d639c3ba8 100644 --- a/src/main/java/thebetweenlands/common/block/terrain/BlockSwampWater.java +++ b/src/main/java/thebetweenlands/common/block/terrain/BlockSwampWater.java @@ -328,11 +328,7 @@ public void updateTick(World world, BlockPos pos, IBlockState state, Random rand if (!(state.getBlock() instanceof BlockSwampWater && ((BlockSwampWater) state.getBlock()).isUnderwaterBlock)) { // check adjacent block levels if non-source if (quantaRemaining < quantaPerBlock) { - if (world.getBlockState(pos.add(0, -densityDir, 0)).getBlock() == this || - world.getBlockState(pos.add(-1, -densityDir, 0)).getBlock() == this || - world.getBlockState(pos.add(1, -densityDir, 0)).getBlock() == this || - world.getBlockState(pos.add(0, -densityDir, -1)).getBlock() == this || - world.getBlockState(pos.add(0, -densityDir, 1)).getBlock() == this) { + if (world.getBlockState(pos.add(0, -densityDir, 0)).getBlock() == this) { expQuanta = quantaPerBlock - 1; } else { int maxQuanta = -100; @@ -561,4 +557,4 @@ public FluidStack drain(World world, BlockPos pos, boolean doDrain) { } return super.drain(world, pos, doDrain); } -} \ No newline at end of file +}