if( maxFlowers > 0 ) {
List<BlockType> map = flowerMaps.get(settings);
//LogHelper.finer("[FG] "+eBiome.getDecorationSettings()+" = "+maxFlowers+", "+map.size()+" varieties");
for (int flowers = 0; flowers < maxFlowers; ++flowers) {
final int idx = rand.nextInt(map.size());
final BlockType type = map.get(idx);
//LogHelper.finest("[FG] "+eBiome.biomeName+" > "+flowers+"/"+maxFlowers+" = "+type);
applyGenerator(type, world, chunkX, chunkZ, rand);
}
}
}