Merge branch 'BOP-1.7.10-2.1.x' of https://github.com/Glitchfiend/BiomesOPlenty into BOP-1.7.10-2.1.x

This commit is contained in:
Adubbz 2014-08-02 17:41:48 +10:00
commit 8171bd1c25
4 changed files with 5 additions and 5 deletions

View file

@ -3,9 +3,11 @@ package biomesoplenty.common.biome.overworld;
import java.util.Random;
import net.minecraft.block.Block;
import net.minecraft.entity.monster.EntitySlime;
import net.minecraft.init.Blocks;
import net.minecraft.world.World;
import net.minecraft.world.biome.BiomeGenBase.Height;
import net.minecraft.world.biome.BiomeGenBase.SpawnListEntry;
import net.minecraft.world.gen.feature.WorldGenAbstractTree;
import biomesoplenty.api.content.BOPCBlocks;
import biomesoplenty.common.biome.BOPOverworldBiome;
@ -27,6 +29,8 @@ public class BiomeGenBog extends BOPOverworldBiome
this.spawnableCreatureList.clear();
this.spawnableWaterCreatureList.clear();
this.spawnableMonsterList.add(new SpawnListEntry(EntitySlime.class, 10, 1, 3));
this.theBiomeDecorator.treesPerChunk = 12;
this.theBiomeDecorator.flowersPerChunk = -999;

View file

@ -30,8 +30,6 @@ public class BiomeGenFen extends BOPOverworldBiome
this.setHeight(biomeHeight);
this.setColor(12240001);
this.setTemperatureRainfall(0.4F, 0.4F);
this.spawnableMonsterList.add(new SpawnListEntry(EntitySlime.class, 10, 1, 3));
this.theBiomeDecorator.treesPerChunk = 10;
this.theBiomeDecorator.mushroomsPerChunk = 8;

View file

@ -33,8 +33,6 @@ public class BiomeGenSludgepit extends BOPOverworldBiome
this.spawnableCreatureList.clear();
this.spawnableWaterCreatureList.clear();
this.spawnableCreatureList.add(new SpawnListEntry(EntitySlime.class, 1, 1, 1));
this.waterColorMultiplier = 11506176;
this.theBiomeDecorator.treesPerChunk = 30;

View file

@ -57,7 +57,7 @@ public class BOPEntities
registerEntityEgg(EntityGlob.class, 6836276, 8414787);
EntityRegistry.addSpawn(EntityGlob.class, 1, 1, 1, EnumCreatureType.creature, BOPCBiomes.bog, BOPCBiomes.deadSwamp, BOPCBiomes.fen, BOPCBiomes.moor, BOPCBiomes.quagmire, BOPCBiomes.sludgepit, BiomeGenBase.swampland);
EntityRegistry.addSpawn(EntityGlob.class, 1, 1, 1, EnumCreatureType.creature, BOPCBiomes.deadSwamp, BOPCBiomes.fen, BOPCBiomes.moor, BOPCBiomes.quagmire, BOPCBiomes.sludgepit, BiomeGenBase.swampland);
}
if (BOPConfigurationIDs.phantomID > 0)