diff options
author | TheJumper <maximilian.springer@web.de> | 2014-02-23 19:35:56 +0100 |
---|---|---|
committer | TheJumper <maximilian.springer@web.de> | 2014-02-23 19:35:56 +0100 |
commit | 2f59517023765e8f5d5555adacafd146729ab071 (patch) | |
tree | bb5202265e994a69e16041a86e8199563ee6e940 /src/Mobs/Zombiepigman.cpp | |
parent | Added static Enchantment Constants, Replaced cryptic Looting ID (diff) | |
download | cuberite-2f59517023765e8f5d5555adacafd146729ab071.tar cuberite-2f59517023765e8f5d5555adacafd146729ab071.tar.gz cuberite-2f59517023765e8f5d5555adacafd146729ab071.tar.bz2 cuberite-2f59517023765e8f5d5555adacafd146729ab071.tar.lz cuberite-2f59517023765e8f5d5555adacafd146729ab071.tar.xz cuberite-2f59517023765e8f5d5555adacafd146729ab071.tar.zst cuberite-2f59517023765e8f5d5555adacafd146729ab071.zip |
Diffstat (limited to 'src/Mobs/Zombiepigman.cpp')
-rw-r--r-- | src/Mobs/Zombiepigman.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/Mobs/Zombiepigman.cpp b/src/Mobs/Zombiepigman.cpp index ca222f9fe..a0142b566 100644 --- a/src/Mobs/Zombiepigman.cpp +++ b/src/Mobs/Zombiepigman.cpp @@ -19,14 +19,19 @@ cZombiePigman::cZombiePigman(void) : void cZombiePigman::GetDrops(cItems & a_Drops, cEntity * a_Killer) { - int LootingLevel = a_Killer->GetEquippedWeapon().m_Enchantments.GetLevel(E_ENCHANTMENT_LOOTING); + int LootingLevel = 0; + if (a_Killer != NULL) + { + LootingLevel = a_Killer->GetEquippedWeapon().m_Enchantments.GetLevel(cEnchantments::enchLooting); + } AddRandomDropItem(a_Drops, 0, 1 + LootingLevel, E_ITEM_ROTTEN_FLESH); AddRandomDropItem(a_Drops, 0, 1 + LootingLevel, E_ITEM_GOLD_NUGGET); cItems RareDrops; RareDrops.Add(cItem(E_ITEM_GOLD)); - if (!GetEquippedWeapon().IsEmpty()) RareDrops.Add(GetEquippedWeapon()); AddRandomRareDropItem(a_Drops, RareDrops, LootingLevel); + AddRandomArmorDropItem(a_Drops, LootingLevel); + AddRandomWeaponDropItem(a_Drops, LootingLevel); } |