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:
committed by
Alexander Harkness
parent
744cdb726d
commit
e585595ae6
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user