3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 04:20:08 +01:00

Validate world in CraftServer.createChunkData

Dieser Commit ist enthalten in:
md_5 2018-07-15 19:52:26 +10:00
Ursprung 764b81ced2
Commit 60185a5616

Datei anzeigen

@ -1684,6 +1684,7 @@ public final class CraftServer implements Server {
@Override
public ChunkGenerator.ChunkData createChunkData(World world) {
Validate.notNull(world, "World cannot be null");
return new CraftChunkData(world);
}