mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-05 02:22:12 +01:00
Note which custom generator is missing required method
By: md_5 <git@md-5.net>
This commit is contained in:
parent
23efa7fb0c
commit
cdcdb41329
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ public abstract class ChunkGenerator {
|
|||
*/
|
||||
@NotNull
|
||||
public ChunkData generateChunkData(@NotNull World world, @NotNull Random random, int x, int z, @NotNull BiomeGrid biome) {
|
||||
throw new UnsupportedOperationException("Custom generator is missing required method generateChunkData");
|
||||
throw new UnsupportedOperationException("Custom generator " + getClass().getName() + " is missing required method generateChunkData");
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue