mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-05 16:49:39 +00:00
Note which custom generator is missing required method
This commit is contained in:
parent
7361a62ec7
commit
b55e58d9e8
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ public abstract class ChunkGenerator {
|
||||||
*/
|
*/
|
||||||
@NotNull
|
@NotNull
|
||||||
public ChunkData generateChunkData(@NotNull World world, @NotNull Random random, int x, int z, @NotNull BiomeGrid biome) {
|
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…
Add table
Reference in a new issue