diff options
author | TheJumper <maximilian.springer@web.de> | 2014-02-22 22:57:40 +0100 |
---|---|---|
committer | TheJumper <maximilian.springer@web.de> | 2014-02-22 22:57:40 +0100 |
commit | 90574d083da08ccd6699bdad403601e282d73b89 (patch) | |
tree | c067f5041bab30081d31ae9b7b9858c00709ba9b /src/Mobs/Zombie.cpp | |
parent | Fixed Looting segment fault - a_Killer can be NULL (diff) | |
download | cuberite-90574d083da08ccd6699bdad403601e282d73b89.tar cuberite-90574d083da08ccd6699bdad403601e282d73b89.tar.gz cuberite-90574d083da08ccd6699bdad403601e282d73b89.tar.bz2 cuberite-90574d083da08ccd6699bdad403601e282d73b89.tar.lz cuberite-90574d083da08ccd6699bdad403601e282d73b89.tar.xz cuberite-90574d083da08ccd6699bdad403601e282d73b89.tar.zst cuberite-90574d083da08ccd6699bdad403601e282d73b89.zip |
Diffstat (limited to 'src/Mobs/Zombie.cpp')
-rw-r--r-- | src/Mobs/Zombie.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/Mobs/Zombie.cpp b/src/Mobs/Zombie.cpp index 61cf49c14..5facf085e 100644 --- a/src/Mobs/Zombie.cpp +++ b/src/Mobs/Zombie.cpp @@ -33,12 +33,8 @@ void cZombie::GetDrops(cItems & a_Drops, cEntity * a_Killer) RareDrops.Add(cItem(E_ITEM_IRON)); RareDrops.Add(cItem(E_ITEM_CARROT)); RareDrops.Add(cItem(E_ITEM_POTATO)); - if (!GetEquippedHelmet().IsEmpty()) RareDrops.Add(GetEquippedHelmet()); - if (!GetEquippedChestplate().IsEmpty()) RareDrops.Add(GetEquippedChestplate()); - if (!GetEquippedLeggings().IsEmpty()) RareDrops.Add(GetEquippedLeggings()); - if (!GetEquippedBoots().IsEmpty()) RareDrops.Add(GetEquippedBoots()); - if (!GetEquippedWeapon().IsEmpty()) RareDrops.Add(GetEquippedWeapon()); AddRandomRareDropItem(a_Drops, RareDrops, LootingLevel); + AddRandomArmorDropItem(a_Drops, LootingLevel); } |