Made hives a bit more common

This commit is contained in:
Matt Caughey 2013-10-30 17:43:12 -04:00
parent 01211d8c8d
commit b0a418ea8f
3 changed files with 5 additions and 5 deletions

View File

@ -1330,7 +1330,7 @@ public class BiomeDecoratorBOP extends BiomeDecorator
for (var2 = 0; var2 < waspHivesPerChunk; ++var2) for (var2 = 0; var2 < waspHivesPerChunk; ++var2)
{ {
int var420 = randomGenerator.nextInt(3); int var420 = randomGenerator.nextInt(4);
if (var420 != 0) if (var420 != 0)
{ {

View File

@ -19,8 +19,8 @@ public class BiomeGenNetherBone extends BiomeGenBase
customBiomeDecorator = (BiomeDecoratorBOP)theBiomeDecorator; customBiomeDecorator = (BiomeDecoratorBOP)theBiomeDecorator;
topBlock = (byte)Block.netherrack.blockID; topBlock = (byte)Block.netherrack.blockID;
fillerBlock = (byte)Block.netherrack.blockID; fillerBlock = (byte)Block.netherrack.blockID;
customBiomeDecorator.boneSpinesPerChunk = 6; customBiomeDecorator.boneSpinesPerChunk = 9;
customBiomeDecorator.boneSpines2PerChunk = 9; customBiomeDecorator.boneSpines2PerChunk = 12;
customBiomeDecorator.gravesPerChunk = 1; customBiomeDecorator.gravesPerChunk = 1;
customBiomeDecorator.waspHivesPerChunk = 1; customBiomeDecorator.waspHivesPerChunk = 1;
spawnableMonsterList.clear(); spawnableMonsterList.clear();

View File

@ -208,7 +208,7 @@ public class BlockBOPPlant extends BlockFlower implements IShearable
if (world.getBlockId(x, y, z) != blockID) if (world.getBlockId(x, y, z) != blockID)
{ {
if (meta == 5) if (meta == 5 || meta == 13)
return this.canThisPlantGrowOnThisBlockID(world.getBlockId(x, y - 1, z)); return this.canThisPlantGrowOnThisBlockID(world.getBlockId(x, y - 1, z));
else if (meta == 8) else if (meta == 8)
return block == null || block.isBlockReplaceable(world, x, y, z); return block == null || block.isBlockReplaceable(world, x, y, z);
@ -217,7 +217,7 @@ public class BlockBOPPlant extends BlockFlower implements IShearable
} }
else else
{ {
if (meta == 5) if (meta == 5 || meta == 13)
return this.canThisPlantGrowOnThisBlockID(world.getBlockId(x, y - 1, z), world.getBlockMetadata(x, y, z)); return this.canThisPlantGrowOnThisBlockID(world.getBlockId(x, y - 1, z), world.getBlockMetadata(x, y, z));
else else
return (world.getFullBlockLightValue(x, y, z) >= 8 || world.canBlockSeeTheSky(x, y, z)) && this.canThisPlantGrowOnThisBlockID(world.getBlockId(x, y - 1, z), world.getBlockMetadata(x, y, z)); return (world.getFullBlockLightValue(x, y, z) >= 8 || world.canBlockSeeTheSky(x, y, z)) && this.canThisPlantGrowOnThisBlockID(world.getBlockId(x, y - 1, z), world.getBlockMetadata(x, y, z));