Index: /binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj
===================================================================
--- /binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj	(revision 253)
+++ /binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj	(revision 254)
@@ -4,5 +4,5 @@
     <Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
-    <ProductVersion>10.0.0</ProductVersion>
+    <ProductVersion>8.0.30703</ProductVersion>
     <SchemaVersion>2.0</SchemaVersion>
     <ProjectGuid>{81DA7F87-1A66-4920-AADA-6EAF1971F8D0}</ProjectGuid>
@@ -19,4 +19,5 @@
     <WarningLevel>4</WarningLevel>
     <ConsolePause>false</ConsolePause>
+    <NoStdLib>true</NoStdLib>
   </PropertyGroup>
   <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release_Version|AnyCPU' ">
@@ -32,4 +33,5 @@
     </CustomCommands>
     <ConsolePause>false</ConsolePause>
+    <NoStdLib>true</NoStdLib>
   </PropertyGroup>
   <ItemGroup>
Index: /binary-improvements/AllocsCommands/AllocsCommands.csproj
===================================================================
--- /binary-improvements/AllocsCommands/AllocsCommands.csproj	(revision 253)
+++ /binary-improvements/AllocsCommands/AllocsCommands.csproj	(revision 254)
@@ -4,5 +4,5 @@
     <Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
-    <ProductVersion>10.0.0</ProductVersion>
+    <ProductVersion>8.0.30703</ProductVersion>
     <SchemaVersion>2.0</SchemaVersion>
     <ProjectGuid>{E273D042-57F9-4E2E-8268-5053527E5287}</ProjectGuid>
@@ -19,4 +19,5 @@
     <WarningLevel>4</WarningLevel>
     <ConsolePause>false</ConsolePause>
+    <NoStdLib>true</NoStdLib>
   </PropertyGroup>
   <ItemGroup>
Index: /binary-improvements/AllocsCommands/Commands/TeleportPlayer.cs
===================================================================
--- /binary-improvements/AllocsCommands/Commands/TeleportPlayer.cs	(revision 253)
+++ /binary-improvements/AllocsCommands/Commands/TeleportPlayer.cs	(revision 254)
@@ -33,5 +33,5 @@
 					ClientInfo ci1 = null;
 					EntityPlayer ep1 = null;
-					UnityEngine.Vector3 destPos;
+					UnityEngine.Vector3 destPos = new UnityEngine.Vector3 ();
  
 					if (_params.Count == 2 || _params.Count == 4) {
Index: /binary-improvements/MapRendering/ModInfo.xml
===================================================================
--- /binary-improvements/MapRendering/ModInfo.xml	(revision 253)
+++ /binary-improvements/MapRendering/ModInfo.xml	(revision 254)
@@ -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="10" />
+		<Version value="11" />
 		<Website value="http://7dtd.illy.bz" />
 	</ModInfo>
Index: /binary-improvements/MapRendering/Web/Handlers/ItemIconHandler.cs
===================================================================
--- /binary-improvements/MapRendering/Web/Handlers/ItemIconHandler.cs	(revision 253)
+++ /binary-improvements/MapRendering/Web/Handlers/ItemIconHandler.cs	(revision 254)
@@ -94,15 +94,18 @@
 					if (tintedIcons.ContainsKey (name)) {
 						foreach (Color c in tintedIcons [name]) {
-							Texture2D tintedTex = new Texture2D (data.width, data.height, TextureFormat.ARGB32, false);
+							string tintedName = name + "__" + AllocsUtils.ColorToHex (c);
+							if (!icons.ContainsKey (tintedName)) {
+								Texture2D tintedTex = new Texture2D (data.width, data.height, TextureFormat.ARGB32, false);
 
-							for (int x = 0; x < data.width; x++) {
-								for (int y = 0; y < data.height; y++) {
-									tintedTex.SetPixel (x, y, tex.GetPixel (x, y) * c);
+								for (int x = 0; x < data.width; x++) {
+									for (int y = 0; y < data.height; y++) {
+										tintedTex.SetPixel (x, y, tex.GetPixel (x, y) * c);
+									}
 								}
+
+								icons.Add (tintedName, tintedTex.EncodeToPNG ());
+
+								UnityEngine.Object.Destroy (tintedTex);
 							}
-
-							icons.Add (name + "__" + AllocsUtils.ColorToHex (c), tintedTex.EncodeToPNG ());
-
-							UnityEngine.Object.Destroy (tintedTex);
 						}
 					}
Index: /binary-improvements/MapRendering/WebAndMapRendering.csproj
===================================================================
--- /binary-improvements/MapRendering/WebAndMapRendering.csproj	(revision 253)
+++ /binary-improvements/MapRendering/WebAndMapRendering.csproj	(revision 254)
@@ -4,5 +4,5 @@
     <Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
     <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
-    <ProductVersion>10.0.0</ProductVersion>
+    <ProductVersion>8.0.30703</ProductVersion>
     <SchemaVersion>2.0</SchemaVersion>
     <ProjectGuid>{A1847B5F-7BFC-4BCD-94AA-A6C9FB7E7C54}</ProjectGuid>
@@ -19,4 +19,5 @@
     <WarningLevel>4</WarningLevel>
     <ConsolePause>false</ConsolePause>
+    <NoStdLib>true</NoStdLib>
   </PropertyGroup>
   <ItemGroup>
Index: /binary-improvements/server-fixes.userprefs
===================================================================
--- /binary-improvements/server-fixes.userprefs	(revision 253)
+++ /binary-improvements/server-fixes.userprefs	(revision 254)
@@ -1,24 +1,18 @@
 ﻿<Properties>
   <MonoDevelop.Ide.Workspace ActiveConfiguration="Release_Version" />
-  <MonoDevelop.Ide.Workbench ActiveDocument="MapRendering/Web/API/GetPlayerInventory.cs">
+  <MonoDevelop.Ide.Workbench ActiveDocument="AllocsCommands/Commands/TeleportPlayer.cs">
     <Files>
-      <File FileName="7dtd-server-fixes/ModInfo.xml" Line="10" Column="7" />
-      <File FileName="AllocsCommands/ModInfo.xml" Line="7" Column="20" />
-      <File FileName="MapRendering/ModInfo.xml" Line="7" Column="20" />
-      <File FileName="MapRendering/Web/Web.cs" Line="34" Column="29" />
-      <File FileName="MapRendering/Web/API/ExecuteConsoleCommand.cs" Line="36" Column="114" />
-      <File FileName="MapRendering/Web/LogBuffer.cs" Line="110" Column="28" />
-      <File FileName="MapRendering/Web/API/GetLog.cs" Line="19" Column="86" />
-      <File FileName="MapRendering/Web/API/GetWebUIUpdates.cs" Line="26" Column="33" />
-      <File FileName="MapRendering/Web/Handlers/ItemIconHandler.cs" Line="39" Column="68" />
-      <File FileName="MapRendering/Web/API/GetLandClaims.cs" Line="1" Column="1" />
-      <File FileName="AllocsCommands/Commands/ShowInventory.cs" Line="85" Column="1" />
-      <File FileName="MapRendering/Web/API/GetPlayerInventory.cs" Line="75" Column="16" />
+      <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/Web/Web.cs" Line="1" Column="1" />
+      <File FileName="MapRendering/Web/API/ExecuteConsoleCommand.cs" Line="1" Column="1" />
+      <File FileName="MapRendering/Web/LogBuffer.cs" Line="1" Column="1" />
+      <File FileName="MapRendering/Web/API/GetLog.cs" Line="1" Column="1" />
+      <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="AllocsCommands/Commands/TeleportPlayer.cs" Line="63" Column="63" />
     </Files>
-    <Pads>
-      <Pad Id="ClassPad">
-        <State expanded="True" selected="True" />
-      </Pad>
-    </Pads>
   </MonoDevelop.Ide.Workbench>
   <MonoDevelop.Ide.DebuggingService.Breakpoints>
