world.markBlockForUpdate(i, j, k);
}
@Override
public boolean canSustainPlant(IBlockAccess world, int x, int y, int z, ForgeDirection direction, IPlantable plant) {
EnumPlantType plantType = plant.getPlantType(world, x, y, z);
if (plantType != EnumPlantType.Crop && plantType != EnumPlantType.Plains)
return false;
int meta = world.getBlockMetadata(x, y, z);
SoilType type = getTypeFromMeta(meta);