1
0
This commit is contained in:
p-mcgowan 2014-12-05 01:01:10 -08:00
parent c655d97c9d
commit 750b4a3eaa

View File

@ -1106,8 +1106,7 @@ eMonsterType cFinishGenPassiveMobs::GetRandomMob(cChunkDesc & a_ChunkDesc)
case biMushroomIsland: case biMushroomIsland:
case biMushroomShore: case biMushroomShore:
{ {
ListOfSpawnables.insert(MobIter, mtMooshroom); return mtMooshroom;
break;
} }
// Add squid in ocean biomes // Add squid in ocean biomes
case biOcean: case biOcean:
@ -1156,13 +1155,10 @@ eMonsterType cFinishGenPassiveMobs::GetRandomMob(cChunkDesc & a_ChunkDesc)
break; break;
} }
} }
if ((a_ChunkDesc.GetBiome(x, z) != biMushroomIsland) && (a_ChunkDesc.GetBiome(x, z) != biMushroomShore)) ListOfSpawnables.insert(MobIter, mtChicken);
{ ListOfSpawnables.insert(MobIter, mtCow);
ListOfSpawnables.insert(MobIter, mtChicken); ListOfSpawnables.insert(MobIter, mtPig);
ListOfSpawnables.insert(MobIter, mtCow); ListOfSpawnables.insert(MobIter, mtSheep);
ListOfSpawnables.insert(MobIter, mtPig);
ListOfSpawnables.insert(MobIter, mtSheep);
}
if (ListOfSpawnables.empty()) if (ListOfSpawnables.empty())
{ {