Index: binary-improvements/MapRendering/Web/API/GetPlayersLocation.cs
===================================================================
--- binary-improvements/MapRendering/Web/API/GetPlayersLocation.cs	(revision 267)
+++ binary-improvements/MapRendering/Web/API/GetPlayersLocation.cs	(revision 268)
@@ -45,5 +45,8 @@
                     pJson.Add("position", pos);
 
-                    playersJsResult.Add (pJson);
+					pJson.Add ("totalplaytime", new JSONNumber (p.TotalPlayTime));
+					pJson.Add ("lastonline", new JSONString (p.LastOnline.ToString ("s")));
+
+					playersJsResult.Add (pJson);
                 }
             }
Index: binary-improvements/MapRendering/Web/API/GetPlayersOnline.cs
===================================================================
--- binary-improvements/MapRendering/Web/API/GetPlayersOnline.cs	(revision 267)
+++ binary-improvements/MapRendering/Web/API/GetPlayersOnline.cs	(revision 268)
@@ -40,4 +40,7 @@
 				p.Add ("score", new JSONNumber (current.Value.Score));
 
+				p.Add ("totalplaytime", new JSONNumber (player != null ? player.TotalPlayTime : -1));
+				p.Add ("lastonline", new JSONString (player != null ? player.LastOnline.ToString ("s") : string.Empty));
+
 				players.Add(p);
 			}
