diff --git a/paper-api/src/main/java/org/bukkit/generator/ChunkGenerator.java b/paper-api/src/main/java/org/bukkit/generator/ChunkGenerator.java index 4c9a64ace0..6cb2bf60fb 100644 --- a/paper-api/src/main/java/org/bukkit/generator/ChunkGenerator.java +++ b/paper-api/src/main/java/org/bukkit/generator/ChunkGenerator.java @@ -44,7 +44,6 @@ import org.jetbrains.annotations.Nullable; *
- * If {@link #shouldGenerateBedrock()} is set to true, the given - * {@link ChunkData} contains already the Vanilla bedrock generation. * * @param worldInfo The world info of the world this chunk will be used for * @param random The random generator to use @@ -404,7 +401,9 @@ public abstract class ChunkGenerator { * called. * * @return true if the server should generate Vanilla bedrock + * @deprecated has no effect, bedrock generation is part of the surface step, see {@link #shouldGenerateSurface()} */ + @Deprecated public boolean shouldGenerateBedrock() { return false; }