Tweaked spider spawn weights in the Ominous Woods
This commit is contained in:
parent
fa832bb8b0
commit
f8220b057e
1 changed files with 3 additions and 1 deletions
|
@ -10,6 +10,7 @@ import biomesoplenty.worldgen.WorldGenOminous2;
|
|||
import net.minecraft.block.Block;
|
||||
import net.minecraft.entity.monster.EntityCaveSpider;
|
||||
import net.minecraft.entity.monster.EntityEnderman;
|
||||
import net.minecraft.entity.monster.EntitySpider;
|
||||
import net.minecraft.entity.passive.EntityBat;
|
||||
import net.minecraft.world.biome.BiomeGenBase;
|
||||
import net.minecraft.world.biome.SpawnListEntry;
|
||||
|
@ -40,7 +41,8 @@ public class BiomeGenOminousWoods extends BiomeGenBase
|
|||
this.spawnableMonsterList.clear();
|
||||
this.spawnableCreatureList.clear();
|
||||
this.spawnableWaterCreatureList.clear();
|
||||
this.spawnableMonsterList.add(new SpawnListEntry(EntityCaveSpider.class, 15, 1, 2));
|
||||
this.spawnableMonsterList.add(new SpawnListEntry(EntityCaveSpider.class, 5, 1, 2));
|
||||
this.spawnableMonsterList.add(new SpawnListEntry(EntitySpider.class, 7, 1, 2));
|
||||
this.spawnableMonsterList.add(new SpawnListEntry(EntityEnderman.class, 10, 1, 4));
|
||||
this.spawnableCaveCreatureList.add(new SpawnListEntry(EntityBat.class, 10, 8, 8));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue