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

@ -124,4 +124,9 @@ public class CraftBlock implements Block {
public Block getRelative(final int modX, final int modY, final int modZ) {
return getWorld().getBlockAt(getX() + modX, getY() + modY, getZ() + modZ);
}
@Override
public String toString() {
return "CraftBlock{" + "world=" + world + "x=" + x + "y=" + y + "z=" + z + "type=" + type + "data=" + data + '}';
}
}

View File

@ -29,4 +29,9 @@ public class CraftChunk implements Chunk {
public int getZ() {
return z;
}
@Override
public String toString() {
return "CraftChunk{" + "x=" + x + "z=" + z + '}';
}
}

View File

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