mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-27 21:19:00 +01:00
Slight tweak to EntityPlayer to add toString for name+position for error tracking
This commit is contained in:
parent
f040900d3c
commit
131a2c769b
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user