summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Enderman.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/Mobs/Enderman.cpp')
-rw-r--r--source/Mobs/Enderman.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/source/Mobs/Enderman.cpp b/source/Mobs/Enderman.cpp
deleted file mode 100644
index 1dc47876f..000000000
--- a/source/Mobs/Enderman.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-
-#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
-
-#include "Enderman.h"
-
-
-
-
-
-cEnderman::cEnderman(void) :
- // 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)
-{
-}
-
-
-
-
-
-void cEnderman::GetDrops(cItems & a_Drops, cEntity * a_Killer)
-{
- AddRandomDropItem(a_Drops, 0, 1, E_ITEM_ENDER_PEARL);
-}
-
-
-
-