Slight tweak to EntityPlayer to add toString for name+position for error tracking

This commit is contained in:
Dinnerbone 2011-03-10 00:02:15 +00:00
parent f040900d3c
commit 131a2c769b

View File

@ -334,4 +334,11 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
this.pitch = f2;
this.yaw = f3;
}
// Craftbukkit start
@Override
public String toString() {
return super.toString() + "(" + name + " at " + locX + "," + locY + "," + locZ + ")";
}
// Craftbukkit end
}