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:
commit
8171bd1c25
4 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue