SPIGOT-1823: Use fast chunk lookup in CraftWorld also

By: md_5 <git@md-5.net>
This commit is contained in:
CraftBukkit/Spigot 2016-03-07 15:52:48 +11:00
parent 099fbb9235
commit 3a052a7919

View File

@ -122,7 +122,7 @@ public class CraftWorld implements World {
}
public Chunk getChunkAt(int x, int z) {
return this.world.getChunkProviderServer().getChunkAt(x, z).bukkitChunk;
return this.world.getChunkProviderServer().getOrCreateChunkFast(x, z).bukkitChunk;
}
public Chunk getChunkAt(Block block) {