SPIGOT-2303: Use getChunkIfLoaded

This commit is contained in:
md_5 2016-05-22 13:57:44 +10:00
parent 8982e3f33e
commit a022dd22fd

View File

@ -63,7 +63,7 @@
+ }
+
+ public Chunk getChunkIfLoaded(int x, int z) {
+ return ((ChunkProviderServer) this.chunkProvider).getLoadedChunkAt(x, z);
+ return ((ChunkProviderServer) this.chunkProvider).getChunkIfLoaded(x, z);
+ }
+
+ protected World(IDataManager idatamanager, WorldData worlddata, WorldProvider worldprovider, MethodProfiler methodprofiler, boolean flag, ChunkGenerator gen, org.bukkit.World.Environment env) {