diff options
Diffstat (limited to '')
-rw-r--r-- | source/Mobs/Enderman.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source/Mobs/Enderman.cpp b/source/Mobs/Enderman.cpp index 356815be0..1dc47876f 100644 --- a/source/Mobs/Enderman.cpp +++ b/source/Mobs/Enderman.cpp @@ -8,7 +8,8 @@ cEnderman::cEnderman(void) : - super("Enderman", 58, "mob.endermen.hit", "mob.endermen.death") + // TODO: The size is only a guesstimate, measure in vanilla and fix the size values here + super("Enderman", 58, "mob.endermen.hit", "mob.endermen.death", 0.5, 2.5) { } @@ -16,7 +17,7 @@ cEnderman::cEnderman(void) : -void cEnderman::GetDrops(cItems & a_Drops, cPawn * a_Killer) +void cEnderman::GetDrops(cItems & a_Drops, cEntity * a_Killer) { AddRandomDropItem(a_Drops, 0, 1, E_ITEM_ENDER_PEARL); } |