Add some .toString()s

This commit is contained in:
Dinnerbone
2010-12-29 00:29:18 +00:00
parent b3c6a7953d
commit e85cabeb4f
3 changed files with 15 additions and 0 deletions

View File

@@ -36,4 +36,9 @@ public class CraftPlayer implements Player {
public EntityPlayerMP getEntity() {
return player;
}
@Override
public String toString() {
return "CraftPlayer{" + "name=" + name + '}';
}
}