io.papermc.lib.features.asyncchunks.AsyncChunksPaper_13 Maven / Gradle / Ivy
package io.papermc.lib.features.asyncchunks;
import org.bukkit.Chunk;
import org.bukkit.World;
import java.util.concurrent.CompletableFuture;
public class AsyncChunksPaper_13 implements AsyncChunks {
@Override
public CompletableFuture getChunkAtAsync(World world, int x, int z, boolean gen, boolean isUrgent) {
return world.getChunkAtAsync(x, z, gen);
}
}