diff --git a/src/main/java/biomesoplenty/common/biomes/BiomeGenCrag.java b/src/main/java/biomesoplenty/common/biomes/BiomeGenCrag.java index 1e58eb8ea..04551b0b6 100644 --- a/src/main/java/biomesoplenty/common/biomes/BiomeGenCrag.java +++ b/src/main/java/biomesoplenty/common/biomes/BiomeGenCrag.java @@ -20,7 +20,7 @@ public class BiomeGenCrag extends BOPBiome this.func_150570_a(biomeHeight); //TODO: setColor() this.setColor(5209457); - this.setTemperatureRainfall(0.4F, 0.2F); + this.setTemperatureRainfall(2.0F, 0.0F); this.spawnableCreatureList.clear(); this.spawnableWaterCreatureList.clear(); diff --git a/src/main/java/biomesoplenty/common/biomes/BiomeGenDeadForest.java b/src/main/java/biomesoplenty/common/biomes/BiomeGenDeadForest.java index 5d7d9c368..c337c0781 100644 --- a/src/main/java/biomesoplenty/common/biomes/BiomeGenDeadForest.java +++ b/src/main/java/biomesoplenty/common/biomes/BiomeGenDeadForest.java @@ -26,7 +26,7 @@ public class BiomeGenDeadForest extends BOPBiome this.func_150570_a(biomeHeight); //TODO: setColor() this.setColor(12362085); - this.setTemperatureRainfall(1.2F, 0.1F); + this.setTemperatureRainfall(0.2F, 0.8F); this.theBiomeDecorator.treesPerChunk = 3; this.theBiomeDecorator.grassPerChunk = 1; diff --git a/src/main/java/biomesoplenty/common/core/BOPBiomes.java b/src/main/java/biomesoplenty/common/core/BOPBiomes.java index 20deb5282..972315080 100644 --- a/src/main/java/biomesoplenty/common/core/BOPBiomes.java +++ b/src/main/java/biomesoplenty/common/core/BOPBiomes.java @@ -100,7 +100,7 @@ public class BOPBiomes registerBiome(new BOPBiomeListEntry(new BiomeGenCherryBlossomGrove(BOPConfigurationIDs.cherryBlossomGroveID).setBiomeName("Cherry Blossom Grove"), BOPBiomeTemperatureType.COOL)); registerBiome(new BOPBiomeListEntry(new BiomeGenConiferousForest(BOPConfigurationIDs.coniferousForestID).setBiomeName("Coniferous Forest"), BOPBiomeTemperatureType.WARM)); registerBiome(new BOPBiomeListEntry(new BiomeGenConiferousForestSnow(BOPConfigurationIDs.coniferousForestSnowID).setBiomeName("Snowy Coniferous Forest"), BOPBiomeTemperatureType.ICY)); - registerBiome(new BOPBiomeListEntry(new BiomeGenCrag(BOPConfigurationIDs.cragID).setBiomeName("Crag"), BOPBiomeTemperatureType.HOT)); + registerBiome(new BOPBiomeListEntry(new BiomeGenCrag(BOPConfigurationIDs.cragID).setBiomeName("Crag"), BOPBiomeTemperatureType.COOL)); registerBiome(new BOPBiomeListEntry(new BiomeGenDeadForest(BOPConfigurationIDs.deadForestID).setBiomeName("Dead Forest"), BOPBiomeTemperatureType.COOL)); registerBiome(new BOPBiomeListEntry(new BiomeGenDeadSwamp(BOPConfigurationIDs.deadSwampID).setBiomeName("Dead Swamp"), BOPBiomeTemperatureType.WARM)); registerBiome(new BOPBiomeListEntry(new BiomeGenDeciduousForest(BOPConfigurationIDs.deciduousForestID).setBiomeName("Deciduous Forest"), BOPBiomeTemperatureType.WARM));