More biome builder functions (mobs, visual effects)

This commit is contained in:
paulevsGitch 2021-12-01 12:54:38 +03:00
parent 6895d705f8
commit 7541e39cf9
2 changed files with 102 additions and 14 deletions

View file

@ -149,6 +149,16 @@ public class BCLBiome {
return fogDensity;
}
/**
* Sets fog density for this biome.
* @param fogDensity
* @return same {@link BCLBiome}.
*/
public BCLBiome setFogDensity(float fogDensity) {
this.fogDensity = fogDensity;
return this;
}
/**
* Getter for biome from buil-in registry. For datapack biomes will be same as actual biome.
* @return {@link Biome}.