mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-15 04:05:50 -07:00
Slight tweak to EntityPlayer to add toString for name+position for error tracking
This commit is contained in:
@@ -334,4 +334,11 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
|
|||||||
this.pitch = f2;
|
this.pitch = f2;
|
||||||
this.yaw = f3;
|
this.yaw = f3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Craftbukkit start
|
||||||
|
@Override
|
||||||
|
public String toString() {
|
||||||
|
return super.toString() + "(" + name + " at " + locX + "," + locY + "," + locZ + ")";
|
||||||
|
}
|
||||||
|
// Craftbukkit end
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user