diff --git a/src/minecraft/biomesoplenty/biomes/BiomeGenBog.java b/src/minecraft/biomesoplenty/biomes/BiomeGenBog.java index fedbdf42c..8d73ce61a 100644 --- a/src/minecraft/biomesoplenty/biomes/BiomeGenBog.java +++ b/src/minecraft/biomesoplenty/biomes/BiomeGenBog.java @@ -38,7 +38,6 @@ public class BiomeGenBog extends BiomeGenBase this.customBiomeDecorator.mudPerChunk2 = 5; this.customBiomeDecorator.deadBushPerChunk = 5; this.customBiomeDecorator.algaePerChunk = 2; - this.spawnableCreatureList.add(new SpawnListEntry(EntitySlime.class, 10, 1, 3)); this.waterColorMultiplier = 11506176; } diff --git a/src/minecraft/biomesoplenty/biomes/BiomeGenDeadSwamp.java b/src/minecraft/biomesoplenty/biomes/BiomeGenDeadSwamp.java index 769f923d5..546f1c5c8 100644 --- a/src/minecraft/biomesoplenty/biomes/BiomeGenDeadSwamp.java +++ b/src/minecraft/biomesoplenty/biomes/BiomeGenDeadSwamp.java @@ -37,7 +37,6 @@ public class BiomeGenDeadSwamp extends BiomeGenBase this.spawnableCreatureList.clear(); this.spawnableWaterCreatureList.clear(); this.waterColorMultiplier = 10661201; - this.spawnableMonsterList.add(new SpawnListEntry(EntitySlime.class, 10, 1, 3)); } /** diff --git a/src/minecraft/biomesoplenty/biomes/BiomeGenQuagmire.java b/src/minecraft/biomesoplenty/biomes/BiomeGenQuagmire.java index 929d0864d..9d293d3e4 100644 --- a/src/minecraft/biomesoplenty/biomes/BiomeGenQuagmire.java +++ b/src/minecraft/biomesoplenty/biomes/BiomeGenQuagmire.java @@ -31,7 +31,6 @@ public class BiomeGenQuagmire extends BiomeGenBase this.customBiomeDecorator.sandPerChunk2 = -999; this.waterColorMultiplier = 13390080; this.customBiomeDecorator.generateQuagmire = true; - this.spawnableMonsterList.add(new SpawnListEntry(EntitySlime.class, 10, 1, 3)); } /** diff --git a/src/minecraft/biomesoplenty/configuration/BOPEntities.java b/src/minecraft/biomesoplenty/configuration/BOPEntities.java index cc1ade70c..bbee93dea 100644 --- a/src/minecraft/biomesoplenty/configuration/BOPEntities.java +++ b/src/minecraft/biomesoplenty/configuration/BOPEntities.java @@ -51,12 +51,17 @@ public class BOPEntities { registerEntityEgg(EntityJungleSpider.class, 5147192, 11013646); registerEntityEgg(EntityRosester.class, 14831439, 16756224); - registerEntityEgg(EntityGlob.class, 14831439, 16756224); + registerEntityEgg(EntityGlob.class, 6836276, 8414787); if (Biomes.jungleNew.isPresent() && Biomes.tropicalRainforest.isPresent() && Biomes.oasis.isPresent() && Biomes.tropics.isPresent()) { EntityRegistry.addSpawn(EntityJungleSpider.class, 8, 1, 3, EnumCreatureType.monster, Biomes.jungleNew.get(), Biomes.tropicalRainforest.get(), Biomes.oasis.get(), Biomes.tropics.get()); } + + if (Biomes.bog.isPresent() && Biomes.deadSwamp.isPresent() && Biomes.fen.isPresent() && Biomes.moor.isPresent() && Biomes.quagmire.isPresent() && Biomes.swamplandNew.isPresent()) + { + EntityRegistry.addSpawn(EntityJungleSpider.class, 1, 1, 1, EnumCreatureType.creature, Biomes.bog.get(), Biomes.deadSwamp.get(), Biomes.fen.get(), Biomes.moor.get(), Biomes.quagmire.get(), Biomes.swamplandNew.get()); + } if (Biomes.garden.isPresent()) { diff --git a/src/minecraft/biomesoplenty/mobs/EntityGlob.java b/src/minecraft/biomesoplenty/mobs/EntityGlob.java index d1c3a9fe2..4bffdeb80 100644 --- a/src/minecraft/biomesoplenty/mobs/EntityGlob.java +++ b/src/minecraft/biomesoplenty/mobs/EntityGlob.java @@ -276,7 +276,7 @@ public class EntityGlob extends EntityLiving implements IMob */ protected int getDropItemId() { - return this.getGlobSize() == 1 ? Items.mudball.get().itemID : 0; + return this.getGlobSize() == 1 ? Item.slimeBall.itemID : Items.mudball.get().itemID; } /** diff --git a/src/minecraft/mods/BiomesOPlenty/textures/mobs/glob.png b/src/minecraft/mods/BiomesOPlenty/textures/mobs/glob.png index 4223e8376..ea73d4c02 100644 Binary files a/src/minecraft/mods/BiomesOPlenty/textures/mobs/glob.png and b/src/minecraft/mods/BiomesOPlenty/textures/mobs/glob.png differ