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

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

package io.papermc.lib.features.chunkisgenerated;

import org.bukkit.World;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy