1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-03-26 00:27:08 +01:00

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) {