Add a couple of method null checks to CraftWorld

This commit is contained in:
md_5 2020-04-17 08:39:22 +10:00
parent ce66f6937b
commit a8ec1d60f3
1 changed files with 6 additions and 0 deletions

View File

@ -333,6 +333,8 @@ public class CraftWorld implements World {
@Override
public Chunk getChunkAt(Block block) {
Preconditions.checkArgument(block != null, "null block");
return getChunkAt(block.getX() >> 4, block.getZ() >> 4);
}
@ -471,11 +473,15 @@ public class CraftWorld implements World {
@Override
public boolean isChunkLoaded(Chunk chunk) {
Preconditions.checkArgument(chunk != null, "null chunk");
return isChunkLoaded(chunk.getX(), chunk.getZ());
}
@Override
public void loadChunk(Chunk chunk) {
Preconditions.checkArgument(chunk != null, "null chunk");
loadChunk(chunk.getX(), chunk.getZ());
((CraftChunk) getChunkAt(chunk.getX(), chunk.getZ())).getHandle().bukkitChunk = chunk;
}