summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Enderman.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-02-24 18:30:44 +0100
committerMattes D <github@xoft.cz>2014-02-24 18:30:44 +0100
commit23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6 (patch)
treedd8975008870688e77b33a20072fd54e7e34bb9c /src/Mobs/Enderman.cpp
parentMerge pull request #722 from mc-server/CompileFix_C++03 (diff)
parentFixed Formatting, added compiler warning suppressing methods, fixed comments (diff)
downloadcuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar
cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.gz
cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.bz2
cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.lz
cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.xz
cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.tar.zst
cuberite-23093fd4d1b1bc5f6d7aae8b5ba6a4cce90921d6.zip
Diffstat (limited to 'src/Mobs/Enderman.cpp')
-rw-r--r--src/Mobs/Enderman.cpp7
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);
}