diff options
author | TheJumper <maximilian.springer@web.de> | 2014-02-23 19:44:58 +0100 |
---|---|---|
committer | TheJumper <maximilian.springer@web.de> | 2014-02-23 19:50:51 +0100 |
commit | 2cc597372afddbd798c2a8c2e754b3f9c7a36038 (patch) | |
tree | bb5202265e994a69e16041a86e8199563ee6e940 /src/Mobs/Enderman.cpp | |
parent | BlockBed.cpp: Fixed Multiple people in one bed. (diff) | |
download | cuberite-2cc597372afddbd798c2a8c2e754b3f9c7a36038.tar cuberite-2cc597372afddbd798c2a8c2e754b3f9c7a36038.tar.gz cuberite-2cc597372afddbd798c2a8c2e754b3f9c7a36038.tar.bz2 cuberite-2cc597372afddbd798c2a8c2e754b3f9c7a36038.tar.lz cuberite-2cc597372afddbd798c2a8c2e754b3f9c7a36038.tar.xz cuberite-2cc597372afddbd798c2a8c2e754b3f9c7a36038.tar.zst cuberite-2cc597372afddbd798c2a8c2e754b3f9c7a36038.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Enderman.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Mobs/Enderman.cpp b/src/Mobs/Enderman.cpp index a784131e4..becc99a86 100644 --- a/src/Mobs/Enderman.cpp +++ b/src/Mobs/Enderman.cpp @@ -21,7 +21,12 @@ cEnderman::cEnderman(void) : void cEnderman::GetDrops(cItems & a_Drops, cEntity * a_Killer) { - AddRandomDropItem(a_Drops, 0, 1, E_ITEM_ENDER_PEARL); + int LootingLevel = 0; + if (a_Killer != NULL) + { + LootingLevel = a_Killer->GetEquippedWeapon().m_Enchantments.GetLevel(cEnchantments::enchLooting); + } + AddRandomDropItem(a_Drops, 0, 1 + LootingLevel, E_ITEM_ENDER_PEARL); } |