toString!

This commit is contained in:
Dinnerbone
2011-01-30 22:01:53 +00:00
parent 639d3e3f94
commit 1c9e7f9aee
33 changed files with 164 additions and 1 deletions

View File

@@ -13,4 +13,9 @@ public class CraftArrow extends CraftEntity implements Arrow {
public CraftArrow(CraftServer server, EntityArrow entity) {
super(server, entity);
}
@Override
public String toString() {
return "CraftArrow";
}
}