Tweaked Wasteland biome
This commit is contained in:
parent
827bddf710
commit
942887c03d
4 changed files with 5 additions and 5 deletions
|
@ -23,7 +23,7 @@ public class BiomeGenWasteland extends BiomeGenBase implements IWCFog
|
|||
fillerBlock = (byte) Blocks.driedDirt.get().blockID;
|
||||
theBiomeDecorator = new BiomeDecoratorBOP(this);
|
||||
customBiomeDecorator = (BiomeDecoratorBOP) theBiomeDecorator;
|
||||
customBiomeDecorator.treesPerChunk = 1;
|
||||
customBiomeDecorator.treesPerChunk = 0;
|
||||
customBiomeDecorator.deadGrassPerChunk = 14;
|
||||
customBiomeDecorator.poisonWaterPerChunk = 10;
|
||||
waterColorMultiplier = 15073024;
|
||||
|
@ -37,9 +37,9 @@ public class BiomeGenWasteland extends BiomeGenBase implements IWCFog
|
|||
@Override
|
||||
public WorldGenerator getRandomWorldGenForTrees(Random par1Random)
|
||||
{
|
||||
return par1Random.nextInt(4) == 0 ? new WorldGenWasteland()
|
||||
: (par1Random.nextInt(4) == 0 ? new WorldGenWasteland2()
|
||||
: new WorldGenDeadTree3(false));
|
||||
return par1Random.nextInt(6) == 0 ? new WorldGenDeadTree3(false)
|
||||
: (par1Random.nextInt(2) == 0 ? new WorldGenWasteland2()
|
||||
: new WorldGenWasteland());
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -28,7 +28,7 @@ public class BiomeGenPromisedLandForest extends BiomeGenBase implements IWCFog
|
|||
customBiomeDecorator = (BiomeDecoratorBOP)theBiomeDecorator;
|
||||
topBlock = (byte)Blocks.holyGrass.get().blockID;
|
||||
fillerBlock = (byte)Blocks.holyDirt.get().blockID;
|
||||
customBiomeDecorator.treesPerChunk = 20;
|
||||
customBiomeDecorator.treesPerChunk = 10;
|
||||
customBiomeDecorator.grassPerChunk = -999;
|
||||
customBiomeDecorator.holyTallGrassPerChunk = 50;
|
||||
customBiomeDecorator.promisedWillowPerChunk = 40;
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 347 B After Width: | Height: | Size: 338 B |
Binary file not shown.
Before Width: | Height: | Size: 744 B After Width: | Height: | Size: 640 B |
Loading…
Reference in a new issue