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>
