From 561652be8aded06aca6b67a726702887a2c5521f Mon Sep 17 00:00:00 2001 From: Matt Caughey Date: Sat, 4 May 2013 04:58:05 -0400 Subject: [PATCH] Added high cattails to other swampy biomes. --- src/minecraft/biomesoplenty/biomes/BiomeGenBayou.java | 1 + src/minecraft/biomesoplenty/biomes/BiomeGenFen.java | 1 + src/minecraft/biomesoplenty/biomes/BiomeGenFungiForest.java | 2 ++ src/minecraft/biomesoplenty/biomes/BiomeGenLushSwamp.java | 1 + 4 files changed, 5 insertions(+) diff --git a/src/minecraft/biomesoplenty/biomes/BiomeGenBayou.java b/src/minecraft/biomesoplenty/biomes/BiomeGenBayou.java index 418e6384b..1f8a0895b 100644 --- a/src/minecraft/biomesoplenty/biomes/BiomeGenBayou.java +++ b/src/minecraft/biomesoplenty/biomes/BiomeGenBayou.java @@ -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; diff --git a/src/minecraft/biomesoplenty/biomes/BiomeGenFen.java b/src/minecraft/biomesoplenty/biomes/BiomeGenFen.java index 5980b8001..a69adafeb 100644 --- a/src/minecraft/biomesoplenty/biomes/BiomeGenFen.java +++ b/src/minecraft/biomesoplenty/biomes/BiomeGenFen.java @@ -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; diff --git a/src/minecraft/biomesoplenty/biomes/BiomeGenFungiForest.java b/src/minecraft/biomesoplenty/biomes/BiomeGenFungiForest.java index 740f7f7e9..157bc2172 100644 --- a/src/minecraft/biomesoplenty/biomes/BiomeGenFungiForest.java +++ b/src/minecraft/biomesoplenty/biomes/BiomeGenFungiForest.java @@ -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; diff --git a/src/minecraft/biomesoplenty/biomes/BiomeGenLushSwamp.java b/src/minecraft/biomesoplenty/biomes/BiomeGenLushSwamp.java index 03fd1fe12..6bdcdf2ac 100644 --- a/src/minecraft/biomesoplenty/biomes/BiomeGenLushSwamp.java +++ b/src/minecraft/biomesoplenty/biomes/BiomeGenLushSwamp.java @@ -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));