Added toString overrides to new Craft entities.

This commit is contained in:
EvilSeph
2011-09-16 22:24:09 -04:00
parent 820c51ab97
commit 096672b3c1
3 changed files with 15 additions and 0 deletions

View File

@@ -13,4 +13,9 @@ public class CraftEnderman extends CraftMonster implements Enderman {
public EntityEnderman getHandle() {
return (EntityEnderman) super.getHandle();
}
@Override
public String toString() {
return "CraftEnderman";
}
}