summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Squid.cpp
diff options
context:
space:
mode:
authorTheJumper <maximilian.springer@web.de>2014-02-22 01:21:49 +0100
committerTheJumper <maximilian.springer@web.de>2014-02-22 01:21:49 +0100
commit7a7b9e88b295bd5e151f84cb4ae78d1749367d4e (patch)
treee77eee810941cfed4aa9fa071280e9c38d5a7451 /src/Mobs/Squid.cpp
parentFixed Mob Drops, Add Rare and Uncommon Drops, Looting inflicts Drops (diff)
downloadcuberite-7a7b9e88b295bd5e151f84cb4ae78d1749367d4e.tar
cuberite-7a7b9e88b295bd5e151f84cb4ae78d1749367d4e.tar.gz
cuberite-7a7b9e88b295bd5e151f84cb4ae78d1749367d4e.tar.bz2
cuberite-7a7b9e88b295bd5e151f84cb4ae78d1749367d4e.tar.lz
cuberite-7a7b9e88b295bd5e151f84cb4ae78d1749367d4e.tar.xz
cuberite-7a7b9e88b295bd5e151f84cb4ae78d1749367d4e.tar.zst
cuberite-7a7b9e88b295bd5e151f84cb4ae78d1749367d4e.zip
Diffstat (limited to '')
-rw-r--r--src/Mobs/Squid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Mobs/Squid.cpp b/src/Mobs/Squid.cpp
index 9dee69cbb..4f2abf574 100644
--- a/src/Mobs/Squid.cpp
+++ b/src/Mobs/Squid.cpp
@@ -21,7 +21,7 @@ cSquid::cSquid(void) :
void cSquid::GetDrops(cItems & a_Drops, cEntity * a_Killer)
{
// Drops 0-3 Ink Sacs
- int LootingLevel = a_Killer->GetEquippedWeapon().m_Enchantments.GetLevel(21);
+ int LootingLevel = a_Killer->GetEquippedWeapon().m_Enchantments.GetLevel(E_ENCHANTMENT_LOOTING);
AddRandomDropItem(a_Drops, 0, 3 + LootingLevel, E_ITEM_DYE, E_META_DYE_BLACK);
}