![JAR search and dependency download from the Maven repository](/logo.png)
cn.nukkit.level.biome.impl.extremehills.ExtremeHillsPlusMBiome Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powernukkit Show documentation
Show all versions of powernukkit Show documentation
A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.
package cn.nukkit.level.biome.impl.extremehills;
/**
* @author DaPorkchop_ (Nukkit Project)
*
* make sure this is touching another extreme hills type or it'll look dumb
*
* very steep (1-2 block at a time) hills with round tops. flat in between
*/
public class ExtremeHillsPlusMBiome extends ExtremeHillsMBiome {
public ExtremeHillsPlusMBiome() {
super(false);
this.setBaseHeight(1f);
this.setHeightVariation(0.5f);
}
@Override
public String getName() {
return "Extreme Hills+ M";
}
@Override
public boolean doesOverhang() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy