diff --git a/common/biomesoplenty/biomes/BiomeGenWasteland.java b/common/biomesoplenty/biomes/BiomeGenWasteland.java index 7967f037d..373fe0aae 100644 --- a/common/biomesoplenty/biomes/BiomeGenWasteland.java +++ b/common/biomesoplenty/biomes/BiomeGenWasteland.java @@ -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()); } /** diff --git a/common/biomesoplenty/biomes/promisedland/BiomeGenPromisedLandForest.java b/common/biomesoplenty/biomes/promisedland/BiomeGenPromisedLandForest.java index c422173b0..75aa4b82e 100644 --- a/common/biomesoplenty/biomes/promisedland/BiomeGenPromisedLandForest.java +++ b/common/biomesoplenty/biomes/promisedland/BiomeGenPromisedLandForest.java @@ -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; diff --git a/resources/assets/biomesoplenty/textures/blocks/deadgrass.png b/resources/assets/biomesoplenty/textures/blocks/deadgrass.png index 86d64d5a8..4ade1c19b 100644 Binary files a/resources/assets/biomesoplenty/textures/blocks/deadgrass.png and b/resources/assets/biomesoplenty/textures/blocks/deadgrass.png differ diff --git a/resources/assets/biomesoplenty/textures/blocks/drieddirt.png b/resources/assets/biomesoplenty/textures/blocks/drieddirt.png index 250b4c742..494b033dc 100644 Binary files a/resources/assets/biomesoplenty/textures/blocks/drieddirt.png and b/resources/assets/biomesoplenty/textures/blocks/drieddirt.png differ