Fix bukkit 1_8

This commit is contained in:
Jesse Boyd 2016-05-23 05:39:29 +10:00
parent 8a91f09192
commit a423684be9

View File

@ -19,6 +19,6 @@ public class BukkitChunk_1_8 extends CharFaweChunk<Chunk> {
@Override
public Chunk getNewChunk() {
return Bukkit.getWorld(getParent().getWorld()).getChunkAt(getX(), getZ());
return Bukkit.getWorld(getParent().getWorldName()).getChunkAt(getX(), getZ());
}
}