cn.nukkit.level.biome.impl.river.RiverBiome 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.river;
import cn.nukkit.level.biome.type.WateryBiome;
/**
* @author DaPorkchop_ (Nukkit Project)
*/
public class RiverBiome extends WateryBiome {
public RiverBiome() {
this.setBaseHeight(-0.5f);
this.setHeightVariation(0f);
}
@Override
public String getName() {
return "River";
}
}