*
* @param coordinate - The coordinate to generate the birth tree at
* @return True if the generation was successful, false otherwise
*/
public boolean generateBirchTree(Coordinate coordinate) {
return (new WorldGenForest(true)).generate(world, random, coordinate.getBlockX(), coordinate.getBlockY(), coordinate.getBlockZ());
}