Expose vanilla BiomeProvider from WorldInfo

This commit is contained in:
Jason Penilla 2022-01-06 15:56:16 -08:00
parent ee1a4b288c
commit 3d42540191

View file

@ -57,4 +57,13 @@ public interface WorldInfo {
* @return Maximum height of the world
*/
int getMaxHeight();
// Paper start
/**
* Get the vanilla {@link BiomeProvider} for this world.
*
* @return vanilla biome provider
*/
@NotNull BiomeProvider vanillaBiomeProvider();
// Paper end
}