diff options
Diffstat (limited to '')
-rw-r--r-- | src/Mobs/Witch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mobs/Witch.cpp b/src/Mobs/Witch.cpp index 88e8f4e50..6cb103645 100644 --- a/src/Mobs/Witch.cpp +++ b/src/Mobs/Witch.cpp @@ -18,7 +18,7 @@ cWitch::cWitch(void) : void cWitch::GetDrops(cItems & a_Drops, cEntity * a_Killer) { - int LootingLevel = a_Killer->GetEquippedWeapon().m_Enchantments.GetLevel(21); + int LootingLevel = a_Killer->GetEquippedWeapon().m_Enchantments.GetLevel(E_ENCHANTMENT_LOOTING); MTRand r1; int DropTypeCount = (r1.randInt() % 3) + 1; for (int i = 0; i < DropTypeCount; i++) |