All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.papermc.lib.features.chunkisgenerated.ChunkIsGeneratedApiExists Maven / Gradle / Ivy

package io.papermc.lib.features.chunkisgenerated;

import org.bukkit.World;

public class ChunkIsGeneratedApiExists implements ChunkIsGenerated {
    @Override
    public boolean isChunkGenerated(World world, int x, int z) {
        return world.isChunkGenerated(x, z);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy