Fix toString in Location to be readable

By: Erik Broes <erikbroes@grum.nl>
This commit is contained in:
Bukkit/Spigot
2011-09-18 11:48:00 +02:00
parent a7f6bb5cd4
commit ae629bb348

View File

@@ -420,7 +420,7 @@ public class Location implements Cloneable {
@Override
public String toString() {
return "Location{" + "world=" + world + "x=" + x + "y=" + y + "z=" + z + "pitch=" + pitch + "yaw=" + yaw + '}';
return "Location{" + "world=" + world + ",x=" + x + ",y=" + y + ",z=" + z + ",pitch=" + pitch + ",yaw=" + yaw + '}';
}
/**