Changed boulders to use the vanilla boulder generation.

This commit is contained in:
Matt Caughey 2014-03-15 17:17:38 -04:00
parent 2c0aff1941
commit dceb3cd11f
4 changed files with 6 additions and 4 deletions

View File

@ -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;
}

View File

@ -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

View File

@ -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;
}

View File

@ -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));