1
0

Fixed some small passive mob issues (#4057)

* Chickens can be bred with seeds, beetroot seeds, melon seeds, or pumpkin seeds Ref: https://minecraft.gamepedia.com/Chicken#Baby_chicken
* Baby passive mobs don't drop items
* Fixed the size of some mobs
This commit is contained in:
Bond-009
2017-10-21 18:55:46 +02:00
committed by Alexander Harkness
parent 744cdb726d
commit e585595ae6
9 changed files with 44 additions and 10 deletions

View File

@@ -21,6 +21,11 @@ cPig::cPig(void) :
void cPig::GetDrops(cItems & a_Drops, cEntity * a_Killer)
{
if (IsBaby())
{
return; // Babies don't drop items
}
unsigned int LootingLevel = 0;
if (a_Killer != nullptr)
{