addWeightedTreeGenForBiome(biome.get(), new WorldGenAbstractTree(false)
{
@Override
public boolean generate(World world, Random rand, int x, int y, int z)
{
final WorldGenerator worldGen = new WorldGenShrub(3, rand.nextInt(3));
return worldGen.generate(world, rand, x, y, z);
}
}, 50);
addWeightedTreeGenForBiome(biome.get(), JAPANESE_MAPLE_SHRUB_GEN, 50);
}