Index: /binary-improvements/MapRendering/ModInfo.xml
===================================================================
--- /binary-improvements/MapRendering/ModInfo.xml	(revision 255)
+++ /binary-improvements/MapRendering/ModInfo.xml	(revision 256)
@@ -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="11" />
+		<Version value="12" />
 		<Website value="http://7dtd.illy.bz" />
 	</ModInfo>
Index: /binary-improvements/MapRendering/Web/API/GetPlayersLocation.cs
===================================================================
--- /binary-improvements/MapRendering/Web/API/GetPlayersLocation.cs	(revision 255)
+++ /binary-improvements/MapRendering/Web/API/GetPlayersLocation.cs	(revision 256)
@@ -39,4 +39,5 @@
                     JSONObject pJson = new JSONObject ();
                     pJson.Add("steamid", new JSONString (sid));
+					pJson.Add("entityid", new JSONNumber (p.EntityID));
                     pJson.Add("ip", new JSONString (p.IP));
                     pJson.Add("name", new JSONString (p.Name));
Index: /binary-improvements/MapRendering/Web/API/GetPlayersOnline.cs
===================================================================
--- /binary-improvements/MapRendering/Web/API/GetPlayersOnline.cs	(revision 255)
+++ /binary-improvements/MapRendering/Web/API/GetPlayersOnline.cs	(revision 256)
@@ -25,4 +25,5 @@
 				JSONObject p = new JSONObject();
 				p.Add ("steamid", new JSONString (ci.playerId));
+				p.Add ("entityid", new JSONNumber (ci.entityId));
 				p.Add ("ip", new JSONString (ci != null ? ci.ip : string.Empty));
 				p.Add ("name", new JSONString (current.Value.EntityName));
Index: /binary-improvements/server-fixes.userprefs
===================================================================
--- /binary-improvements/server-fixes.userprefs	(revision 255)
+++ /binary-improvements/server-fixes.userprefs	(revision 256)
@@ -1,9 +1,9 @@
 ﻿<Properties>
   <MonoDevelop.Ide.Workspace ActiveConfiguration="Release_Version" />
-  <MonoDevelop.Ide.Workbench ActiveDocument="AllocsCommands/Commands/TeleportPlayer.cs">
+  <MonoDevelop.Ide.Workbench ActiveDocument="MapRendering/ModInfo.xml">
     <Files>
       <File FileName="7dtd-server-fixes/ModInfo.xml" Line="1" Column="1" />
       <File FileName="AllocsCommands/ModInfo.xml" Line="1" Column="1" />
-      <File FileName="MapRendering/ModInfo.xml" Line="1" Column="1" />
+      <File FileName="MapRendering/ModInfo.xml" Line="21" Column="21" />
       <File FileName="MapRendering/Web/Web.cs" Line="1" Column="1" />
       <File FileName="MapRendering/Web/API/ExecuteConsoleCommand.cs" Line="1" Column="1" />
@@ -12,6 +12,7 @@
       <File FileName="MapRendering/Web/API/GetWebUIUpdates.cs" Line="1" Column="1" />
       <File FileName="MapRendering/Web/Handlers/ApiHandler.cs" Line="1" Column="1" />
-      <File FileName="MapRendering/Commands/WebTokens.cs" Line="67" Column="67" />
+      <File FileName="MapRendering/Commands/WebTokens.cs" Line="1" Column="1" />
       <File FileName="AllocsCommands/Commands/TeleportPlayer.cs" Line="63" Column="63" />
+      <File FileName="MapRendering/Web/Handlers/ItemIconHandler.cs" Line="42" Column="42" />
     </Files>
   </MonoDevelop.Ide.Workbench>
Index: /binary-improvements/webserver/index.html
===================================================================
--- /binary-improvements/webserver/index.html	(revision 255)
+++ /binary-improvements/webserver/index.html	(revision 256)
@@ -108,4 +108,5 @@
 	<div id="playerInventoryDialog" title="Player inventory">
 		Player: <span id="invPlayerName"></span><br/>
+		SteamID: <span id="invSteamId"></span><br/>
 		<br/>
 		<table>
Index: /binary-improvements/webserver/js/inventory_dialog.js
===================================================================
--- /binary-improvements/webserver/js/inventory_dialog.js	(revision 255)
+++ /binary-improvements/webserver/js/inventory_dialog.js	(revision 256)
@@ -39,8 +39,13 @@
 		}
 	}
-
+	
+//	function linkId(steamid) {
+//		var value = "https://steamid.io/lookup/"+steamid;
+//	}
+	
 	$.getJSON( "../api/getplayerinventory", { steamid: steamid  })
 	.done(function(data) {
 		$("#invPlayerName").text(data.playername);
+		$("#invSteamId").text(steamid);
 		
 		for (var y = 0; y < BAG_ROWS; y++) {
Index: /binary-improvements/webserver/js/leaflet.layer.landclaims.js
===================================================================
--- /binary-improvements/webserver/js/leaflet.layer.landclaims.js	(revision 255)
+++ /binary-improvements/webserver/js/leaflet.layer.landclaims.js	(revision 256)
@@ -40,5 +40,5 @@
 				var r = L.rectangle(bounds, {color: color, weight: 1, opacity: 0.8, fillOpacity: 0.15});
 				var m = L.marker(pos, { clickable: false, keyboard: false, zIndexOffset:-1000, iconSize: [0,0], icon: L.divIcon({className: 'invisIcon', iconSize:[0,0]}) });
-				r.bindPopup("Owner: " + name + " ("+steamid+")<br/>Position: " + val.x + " / " + val.y + " / " + val.z);
+				r.bindPopup("Owner: " + name + " ("+steamid+")<br/>Position: " + val.x + " " + val.y + " " + val.z);
 				landClaimsRectGroup.addLayer(r);
 				landClaimsClusterGroup.addLayer(m);
