diff --git a/src/main/java/biomesoplenty/common/biomes/BiomeGenTundra.java b/src/main/java/biomesoplenty/common/biomes/BiomeGenTundra.java index 1cab31a31..f81363430 100644 --- a/src/main/java/biomesoplenty/common/biomes/BiomeGenTundra.java +++ b/src/main/java/biomesoplenty/common/biomes/BiomeGenTundra.java @@ -38,7 +38,7 @@ public class BiomeGenTundra extends BOPBiome this.bopWorldFeatures.bopFlowersPerChunk = 1; this.bopWorldFeatures.shrubsPerChunk = 2; this.bopWorldFeatures.waterReedsPerChunk = 2; - this.bopWorldFeatures.rockpilesPerChunk = 25; + this.bopWorldFeatures.rockpilesPerChunk = 15; this.bopWorldFeatures.leafPilesPerChunk = 5; this.bopWorldFeatures.deadLeafPilesPerChunk = 5; } diff --git a/src/main/java/biomesoplenty/common/biomes/BiomeGenWasteland.java b/src/main/java/biomesoplenty/common/biomes/BiomeGenWasteland.java index 38875793f..7c885a8d9 100644 --- a/src/main/java/biomesoplenty/common/biomes/BiomeGenWasteland.java +++ b/src/main/java/biomesoplenty/common/biomes/BiomeGenWasteland.java @@ -42,6 +42,7 @@ public class BiomeGenWasteland extends BOPBiome this.bopWorldFeatures.wasteland2PerChunk = 1; this.bopWorldFeatures.wasteland3PerChunk = 1; this.bopWorldFeatures.wasteland4PerChunk = 1; + this.bopWorldFeatures.wastelandRockPilesPerChunk = 1; } @Override diff --git a/src/main/java/biomesoplenty/common/world/decoration/BOPWorldFeatures.java b/src/main/java/biomesoplenty/common/world/decoration/BOPWorldFeatures.java index 47a1ba4d3..704dac63e 100644 --- a/src/main/java/biomesoplenty/common/world/decoration/BOPWorldFeatures.java +++ b/src/main/java/biomesoplenty/common/world/decoration/BOPWorldFeatures.java @@ -59,6 +59,6 @@ public class BOPWorldFeatures public int wasteland2PerChunk = 0; public int wasteland3PerChunk = 0; public int wasteland4PerChunk = 0; - + public int wastelandRockPilesPerChunk = 0; public int bopFlowersPerChunk = 0; } diff --git a/src/main/java/biomesoplenty/common/world/generation/WorldGenFieldAssociation.java b/src/main/java/biomesoplenty/common/world/generation/WorldGenFieldAssociation.java index fb777c64e..1f64ae6d6 100644 --- a/src/main/java/biomesoplenty/common/world/generation/WorldGenFieldAssociation.java +++ b/src/main/java/biomesoplenty/common/world/generation/WorldGenFieldAssociation.java @@ -3,6 +3,7 @@ package biomesoplenty.common.world.generation; import java.util.HashMap; import net.minecraft.init.Blocks; +import net.minecraft.world.gen.feature.WorldGenBlockBlob; import net.minecraft.world.gen.feature.WorldGenLakes; import net.minecraft.world.gen.feature.WorldGenLiquids; import net.minecraft.world.gen.feature.WorldGenMelon; @@ -17,7 +18,6 @@ import biomesoplenty.common.world.features.WorldGenGrassSplatter; import biomesoplenty.common.world.features.WorldGenLavaSpout; import biomesoplenty.common.world.features.WorldGenLog; import biomesoplenty.common.world.features.WorldGenRiverCane; -import biomesoplenty.common.world.features.WorldGenRockpile; import biomesoplenty.common.world.features.WorldGenSplotches; import biomesoplenty.common.world.features.WorldGenWasteland; import biomesoplenty.common.world.features.WorldGenWasteland2; @@ -84,7 +84,8 @@ public class WorldGenFieldAssociation associateField("minersDelightPerChunk", new WorldGenBOPFlora(BOPBlockHelper.get("flowers2"), 6)); associateField("rootsPerChunk", new WorldGenBOPFlora(BOPBlockHelper.get("plants"), 15)); associateField("grassSplatterPerChunk", new WorldGenGrassSplatter()); - associateField("rockpilesPerChunk", new WorldGenRockpile()); + associateField("rockpilesPerChunk", new WorldGenBlockBlob(Blocks.stone, 0)); + associateField("wastelandRockPilesPerChunk", new WorldGenBlockBlob(BOPBlockHelper.get("driedDirt"), 0)); associateField("logsPerChunk", new WorldGenLog()); associateField("lavaSpoutsPerChunk", new WorldGenLavaSpout()); associateField("cobwebsPerChunk", new WorldGenBOPFlora(Blocks.web, 0));