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

cn.nukkit.level.biome.impl.savanna.SavannaMBiome Maven / Gradle / Ivy

Go to download

A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.

There is a newer version: 1.6.0.1-PN
Show newest version
package cn.nukkit.level.biome.impl.savanna;

/**
 * @author DaPorkchop_
 */
public class SavannaMBiome extends SavannaBiome {
    //TODO: coarse dirt?
    //private static final Simplex coarseDirtNoise = new Simplex(new NukkitRandom(0), 1d, 1 / 4f, 1 / 16f);
    //boolean coarseDirt = false;

    public SavannaMBiome() {
        super();

        //this is set to be above the build limit so that it'll actually hit it sometimes
        this.setBaseHeight(0.3625f);
        this.setHeightVariation(1.225f);
    }

    @Override
    public String getName() {
        return "Savanna M";
    }

    //@Override
    //public int getSurfaceBlock(int y) {
    //    return coarseDirt ? COARSE_DIRT : DIRT;
    //}

    //@Override
    //public void preCover(int x, int z) {
    //    coarseDirt = coarseDirtNoise.noise2D(x, z, true) < 0;
    //}

    @Override
    public boolean doesOverhang() {
        return true;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy