Fix source block check for BlockFluidClassic

This commit is contained in:
Ruben Taelman 2015-07-21 10:51:53 +02:00
parent cd313c195b
commit 0cf1f0d51c

View file

@ -171,7 +171,7 @@ public class BlockFluidClassic extends BlockFluidBase
public boolean isSourceBlock(IBlockAccess world, BlockPos pos)
{
return world.getBlockState(pos) == this && ((Integer)world.getBlockState(pos).getValue(LEVEL)).intValue() == 0;
return world.getBlockState(pos).getBlock() == this && ((Integer)world.getBlockState(pos).getValue(LEVEL)).intValue() == 0;
}
protected boolean[] getOptimalFlowDirections(World world, BlockPos pos)
@ -348,4 +348,4 @@ public class BlockFluidClassic extends BlockFluidBase
{
return isSourceBlock(world, pos);
}
}
}