mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-24 03:25:15 +01:00
Probably fixed getLoadedChunks()
This commit is contained in:
parent
7401ee54a3
commit
6e58053eb7
@ -73,11 +73,12 @@ public class CraftWorld implements World {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public Chunk[] getLoadedChunks() {
|
public Chunk[] getLoadedChunks() {
|
||||||
net.minecraft.server.Chunk[] chunks = (net.minecraft.server.Chunk[])provider.e.values().toArray();
|
Object[] chunks = provider.e.values().toArray();
|
||||||
org.bukkit.Chunk[] craftChunks = new CraftChunk[chunks.length];
|
org.bukkit.Chunk[] craftChunks = new CraftChunk[chunks.length];
|
||||||
|
|
||||||
for (int i = 0; i < chunks.length; i++) {
|
for (int i = 0; i < chunks.length; i++) {
|
||||||
craftChunks[i] = chunks[i].bukkitChunk;
|
net.minecraft.server.Chunk chunk = (net.minecraft.server.Chunk)chunks[i];
|
||||||
|
craftChunks[i] = chunk.bukkitChunk;
|
||||||
}
|
}
|
||||||
|
|
||||||
return craftChunks;
|
return craftChunks;
|
||||||
|
Loading…
Reference in New Issue
Block a user