Added high cattails to other swampy biomes.
This commit is contained in:
parent
075c34974c
commit
561652be8a
4 changed files with 5 additions and 0 deletions
|
@ -33,6 +33,7 @@ public class BiomeGenBayou extends BiomeGenBase
|
|||
this.customBiomeDecorator.sandPerChunk2 = -999;
|
||||
this.customBiomeDecorator.waterlilyPerChunk = 2;
|
||||
this.customBiomeDecorator.cattailsPerChunk = 1;
|
||||
this.customBiomeDecorator.highCattailsPerChunk = 1;
|
||||
this.customBiomeDecorator.algaePerChunk = 1;
|
||||
this.customBiomeDecorator.generatePumpkins = false;
|
||||
this.waterColorMultiplier = 16767282;
|
||||
|
|
|
@ -30,6 +30,7 @@ public class BiomeGenFen extends BiomeGenBase
|
|||
this.customBiomeDecorator.highGrassPerChunk = 1;
|
||||
this.customBiomeDecorator.waterlilyPerChunk = 1;
|
||||
this.customBiomeDecorator.cattailsPerChunk = 1;
|
||||
this.customBiomeDecorator.highCattailsPerChunk = 1;
|
||||
this.customBiomeDecorator.pondsPerChunk = 99;
|
||||
this.customBiomeDecorator.toadstoolsPerChunk = 2;
|
||||
this.customBiomeDecorator.mushroomsPerChunk = 8;
|
||||
|
|
|
@ -31,6 +31,8 @@ public class BiomeGenFungiForest extends BiomeGenBase
|
|||
this.customBiomeDecorator.bigMushroomsPerChunk = 4;
|
||||
this.customBiomeDecorator.toadstoolsPerChunk = 5;
|
||||
this.customBiomeDecorator.blueFlowersPerChunk = 3;
|
||||
this.customBiomeDecorator.cattailsPerChunk = 1;
|
||||
this.customBiomeDecorator.highCattailsPerChunk = 2;
|
||||
this.customBiomeDecorator.generateMycelium = true;
|
||||
this.customBiomeDecorator.generatePumpkins = false;
|
||||
this.waterColorMultiplier = 65326;
|
||||
|
|
|
@ -26,6 +26,7 @@ public class BiomeGenLushSwamp extends BiomeGenBase
|
|||
this.customBiomeDecorator.mushroomsPerChunk = 8;
|
||||
this.customBiomeDecorator.reedsPerChunk = 16;
|
||||
this.customBiomeDecorator.cattailsPerChunk = 10;
|
||||
this.customBiomeDecorator.highCattailsPerChunk = 5;
|
||||
this.customBiomeDecorator.waterlilyPerChunk = 3;
|
||||
this.customBiomeDecorator.hydrangeasPerChunk = 1;
|
||||
this.spawnableMonsterList.add(new SpawnListEntry(EntitySlime.class, 1, 1, 1));
|
||||
|
|
Loading…
Reference in a new issue