From 5c5cf3e7e783bfe24e6c88cc0c99647903009e0b Mon Sep 17 00:00:00 2001 From: cpw Date: Sun, 28 Jul 2013 19:15:00 +0200 Subject: [PATCH] Fix formatting error in PR --- .../minecraftforge/fluids/BlockFluidBase.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/common/net/minecraftforge/fluids/BlockFluidBase.java b/common/net/minecraftforge/fluids/BlockFluidBase.java index c81e9e237..dfcd7eb58 100644 --- a/common/net/minecraftforge/fluids/BlockFluidBase.java +++ b/common/net/minecraftforge/fluids/BlockFluidBase.java @@ -15,11 +15,11 @@ import net.minecraft.world.World; /** * This is a base implementation for Fluid blocks. - * + * * It is highly recommended that you extend this class or one of the Forge-provided child classes. - * + * * @author King Lemming, OvermindDL1 - * + * */ public abstract class BlockFluidBase extends Block implements IFluidBlock { @@ -121,8 +121,8 @@ public abstract class BlockFluidBase extends Block implements IFluidBlock { return false; } - - if (this.density > getDensity(world, x, y, z)) + + if (this.density > getDensity(world, x, y, z)) { return true; } @@ -164,7 +164,7 @@ public abstract class BlockFluidBase extends Block implements IFluidBlock return false; } Block.blocksList[bId].dropBlockAsItem(world, x, y, z, world.getBlockMetadata(x, y, z), 0); - + if (this.density > getDensity(world, x, y, z)) { return true; @@ -288,7 +288,7 @@ public abstract class BlockFluidBase extends Block implements IFluidBlock int lightUpBase = lightUp & 255; int lightThisExt = lightThis >> 16 & 255; int lightUpExt = lightUp >> 16 & 255; - return (lightThisBase > lightUpBase ? lightThisBase : lightUpBase) | + return (lightThisBase > lightUpBase ? lightThisBase : lightUpBase) | ((lightThisExt > lightUpExt ? lightThisExt : lightUpExt) << 16); } @@ -397,7 +397,7 @@ public abstract class BlockFluidBase extends Block implements IFluidBlock if (world.getBlockId(x, y + 1, z) == blockID) { - boolean flag = + boolean flag = isBlockSolid(world, x, y, z - 1, 2) || isBlockSolid(world, x, y, z + 1, 3) || isBlockSolid(world, x - 1, y, z, 4) || @@ -406,7 +406,7 @@ public abstract class BlockFluidBase extends Block implements IFluidBlock isBlockSolid(world, x, y + 1, z + 1, 3) || isBlockSolid(world, x - 1, y + 1, z, 4) || isBlockSolid(world, x + 1, y + 1, z, 5); - + if (flag) { vec = vec.normalize().addVector(0.0D, -6.0D, 0.0D);