biome fixes + refactoring, blackened

This commit is contained in:
Sen 2025-04-14 12:35:45 +02:00
parent 6d912ae7ac
commit 1834c26b72
41 changed files with 296 additions and 328 deletions

View file

@ -18,7 +18,7 @@ public class BiomeSavanna extends Biome
protected BiomeSavanna(int id)
{
super(id);
this.mobs.add(new Biome.RngSpawn(EntityHorse.class, 1, 2, 6));
this.mobs.add(new RngSpawn(EntityHorse.class, 1, 2, 6));
this.treesPerChunk = 1;
this.flowersPerChunk = 4;
this.grassPerChunk = 20;
@ -33,8 +33,8 @@ public class BiomeSavanna extends Biome
{
Biome biomegenbase = new BiomeSavanna.Mutated(p_180277_1_, this);
biomegenbase.temperature = this.temperature == 28.0f ? 24.0f : 20.0f;
biomegenbase.minHeight = this.minHeight * 0.5F + 0.3F;
biomegenbase.maxHeight = this.maxHeight * 0.5F + 1.2F;
biomegenbase.depth = this.depth * 0.5F + 0.3F;
biomegenbase.scale = this.scale * 0.5F + 1.2F;
return biomegenbase;
}