Index: /binary-improvements/MapRendering/ModInfo.xml
===================================================================
--- /binary-improvements/MapRendering/ModInfo.xml	(revision 276)
+++ /binary-improvements/MapRendering/ModInfo.xml	(revision 277)
@@ -5,5 +5,5 @@
 		<Description value="Render the game map to image map tiles as it is uncovered" />
 		<Author value="Christian 'Alloc' Illy" />
-		<Version value="13" />
+		<Version value="14" />
 		<Website value="http://7dtd.illy.bz" />
 	</ModInfo>
Index: /binary-improvements/MapRendering/Web/API/GetPlayersLocation.cs
===================================================================
--- /binary-improvements/MapRendering/Web/API/GetPlayersLocation.cs	(revision 276)
+++ /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 276)
+++ /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);
Index: /binary-improvements/MapRendering/WebAndMapRendering.csproj
===================================================================
--- /binary-improvements/MapRendering/WebAndMapRendering.csproj	(revision 276)
+++ /binary-improvements/MapRendering/WebAndMapRendering.csproj	(revision 277)
@@ -85,4 +85,5 @@
     <Compile Include="Web\API\GetLog.cs" />
     <Compile Include="Web\API\GetWebUIUpdates.cs" />
+    <Compile Include="Web\API\GetServerInfo.cs" />
   </ItemGroup>
   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
