biome fixes + refactoring, blackened
This commit is contained in:
parent
6d912ae7ac
commit
1834c26b72
41 changed files with 296 additions and 328 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue