Tweaked the Flower Field a bit

This commit is contained in:
Matt Caughey 2014-01-16 09:07:22 -05:00
parent 68c2a7ad92
commit b72e29b04f
6 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ import biomesoplenty.common.world.features.trees.WorldGenBOPTaiga3;
public class BiomeGenConiferousForest extends BOPBiome public class BiomeGenConiferousForest extends BOPBiome
{ {
private static final Height biomeHeight = new Height(0.4F, 0.9F); private static final Height biomeHeight = new Height(0.2F, 0.4F);
public BiomeGenConiferousForest(int id) public BiomeGenConiferousForest(int id)
{ {

View File

@ -18,7 +18,7 @@ import net.minecraft.world.gen.feature.WorldGenerator;
public class BiomeGenConiferousForestSnow extends BOPBiome public class BiomeGenConiferousForestSnow extends BOPBiome
{ {
private static final Height biomeHeight = new Height(0.3F, 0.6F); private static final Height biomeHeight = new Height(0.2F, 0.4F);
public BiomeGenConiferousForestSnow(int id) public BiomeGenConiferousForestSnow(int id)
{ {

View File

@ -57,7 +57,7 @@ public class BiomeGenFlowerField extends BOPBiome
@Override @Override
public WorldGenerator getRandomWorldGenForGrass(Random random) public WorldGenerator getRandomWorldGenForGrass(Random random)
{ {
return random.nextInt(7) == 0 ? new WorldGenTallGrass(Blocks.red_flower, 7) : (random.nextInt(5) == 0 ? new WorldGenTallGrass(Blocks.red_flower, 6) : (random.nextInt(3) == 0 ? new WorldGenTallGrass(Blocks.red_flower, 5) : new WorldGenTallGrass(Blocks.red_flower, 4))); return random.nextInt(7) == 0 ? new WorldGenTallGrass(Blocks.red_flower, 7) : (random.nextInt(5) == 0 ? new WorldGenTallGrass(Blocks.red_flower, 6) : (random.nextInt(3) == 0 ? new WorldGenTallGrass(Blocks.red_flower, 5) : (random.nextInt(2) == 0 ? new WorldGenTallGrass(Blocks.red_flower, 4) : new WorldGenTallGrass(Blocks.tallgrass, 1))));
} }
@Override @Override

View File

@ -17,7 +17,7 @@ import biomesoplenty.common.world.features.trees.WorldGenRedwoodTree2;
public class BiomeGenRedwoodForest extends BOPBiome public class BiomeGenRedwoodForest extends BOPBiome
{ {
private static final Height biomeHeight = new Height(0.4F, 0.4F); private static final Height biomeHeight = new Height(0.1F, 0.2F);
public BiomeGenRedwoodForest(int id) public BiomeGenRedwoodForest(int id)
{ {

Binary file not shown.

Before

Width:  |  Height:  |  Size: 573 B

After

Width:  |  Height:  |  Size: 573 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 178 B

After

Width:  |  Height:  |  Size: 165 B