Index: binary-improvements/MapRendering/Web/API/GetPlayersLocation.cs
===================================================================
--- binary-improvements/MapRendering/Web/API/GetPlayersLocation.cs	(revision 270)
+++ binary-improvements/MapRendering/Web/API/GetPlayersLocation.cs	(revision 277)
@@ -47,4 +47,5 @@
 					pJson.Add ("totalplaytime", new JSONNumber (p.TotalPlayTime));
 					pJson.Add ("lastonline", new JSONString (p.LastOnline.ToString ("s")));
+					pJson.Add ("ping", new JSONNumber (p.IsOnline ? p.ClientInfo.ping : -1));
 
 					playersJsResult.Add (pJson);
Index: binary-improvements/MapRendering/Web/API/GetPlayersOnline.cs
===================================================================
--- binary-improvements/MapRendering/Web/API/GetPlayersOnline.cs	(revision 270)
+++ binary-improvements/MapRendering/Web/API/GetPlayersOnline.cs	(revision 277)
@@ -31,5 +31,7 @@
 				p.Add ("position", pos);
 
+				// Deprecated!
 				p.Add ("experience", new JSONNumber (player != null ? player.Experience : 0));
+
 				p.Add ("level", new JSONNumber (player != null ? player.Level : -1));
 				p.Add ("health", new JSONNumber (current.Value.Health));
@@ -42,4 +44,5 @@
 				p.Add ("totalplaytime", new JSONNumber (player != null ? player.TotalPlayTime : -1));
 				p.Add ("lastonline", new JSONString (player != null ? player.LastOnline.ToString ("s") : string.Empty));
+				p.Add ("ping", new JSONNumber (ci != null ? ci.ping : -1));
 
 				players.Add(p);
