summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Zombiepigman.cpp
diff options
context:
space:
mode:
authorTheJumper <maximilian.springer@web.de>2014-02-21 18:45:00 +0100
committerTheJumper <maximilian.springer@web.de>2014-02-21 18:45:00 +0100
commit1b32b005626e7dd7e466358910d461bf5fb11a64 (patch)
tree28d1261dc2a00dff85c6a03328c3d78c3c4d8937 /src/Mobs/Zombiepigman.cpp
parentBlockBed.cpp: Fixed space at if statement (diff)
downloadcuberite-1b32b005626e7dd7e466358910d461bf5fb11a64.tar
cuberite-1b32b005626e7dd7e466358910d461bf5fb11a64.tar.gz
cuberite-1b32b005626e7dd7e466358910d461bf5fb11a64.tar.bz2
cuberite-1b32b005626e7dd7e466358910d461bf5fb11a64.tar.lz
cuberite-1b32b005626e7dd7e466358910d461bf5fb11a64.tar.xz
cuberite-1b32b005626e7dd7e466358910d461bf5fb11a64.tar.zst
cuberite-1b32b005626e7dd7e466358910d461bf5fb11a64.zip
Diffstat (limited to '')
-rw-r--r--src/Mobs/Zombiepigman.cpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/Mobs/Zombiepigman.cpp b/src/Mobs/Zombiepigman.cpp
index 6ac89ed4c..d1eadc2ae 100644
--- a/src/Mobs/Zombiepigman.cpp
+++ b/src/Mobs/Zombiepigman.cpp
@@ -19,10 +19,14 @@ cZombiePigman::cZombiePigman(void) :
void cZombiePigman::GetDrops(cItems & a_Drops, cEntity * a_Killer)
{
- AddRandomDropItem(a_Drops, 0, 1, E_ITEM_ROTTEN_FLESH);
- AddRandomDropItem(a_Drops, 0, 1, E_ITEM_GOLD_NUGGET);
+ int LootingLevel = a_Killer->GetEquippedWeapon().m_Enchantments.GetLevel(21);
+ AddRandomDropItem(a_Drops, 0, 1 + LootingLevel, E_ITEM_ROTTEN_FLESH);
+ AddRandomDropItem(a_Drops, 0, 1 + LootingLevel, E_ITEM_GOLD_NUGGET);
- // TODO: Rare drops
+ cItems RareDrops;
+ RareDrops.Add(cItem(E_ITEM_GOLD));
+ if (!GetEquippedWeapon().IsEmpty()) RareDrops.Add(GetEquippedWeapon());
+ AddRandomRareDropItem(a_Drops, RareDrops, LootingLevel);
}