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

cn.nukkit.level.generator.populator.helper.EnsureGrassBelow Maven / Gradle / Ivy

There is a newer version: 1.20.40-r1
Show newest version
package cn.nukkit.level.generator.populator.helper;

import cn.nukkit.level.format.FullChunk;

import static cn.nukkit.block.BlockID.GRASS;

/**
 * @author DaPorkchop_
 */
public interface EnsureGrassBelow {
    static boolean ensureGrassBelow(int x, int y, int z, FullChunk chunk) {
        return EnsureBelow.ensureBelow(x, y, z, GRASS, chunk);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy