Fix small derp

This commit is contained in:
Heldplayer 2013-08-03 23:42:38 +02:00
parent cf4f1377d4
commit 647f6fdf34
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ public abstract class BlockFluidBase extends Block implements IFluidBlock
public static double getFlowDirection(IBlockAccess world, int x, int y, int z) public static double getFlowDirection(IBlockAccess world, int x, int y, int z)
{ {
Block block = Block.blocksList[world.getBlockId(x, y, z)]; Block block = Block.blocksList[world.getBlockId(x, y, z)];
if (world.getBlockMaterial(x, y, z).isLiquid()) if (!world.getBlockMaterial(x, y, z).isLiquid())
{ {
return -1000.0; return -1000.0;
} }