Index: binary-improvements/MapRendering/Web/Handlers/ItemIconHandler.cs
===================================================================
--- binary-improvements/MapRendering/Web/Handlers/ItemIconHandler.cs	(revision 256)
+++ binary-improvements/MapRendering/Web/Handlers/ItemIconHandler.cs	(revision 267)
@@ -9,4 +9,9 @@
 {
 	public class ItemIconHandler : PathHandler {
+		private static ItemIconHandler instance = null;
+		public static ItemIconHandler Instance {
+			get { return instance; }
+		}
+
 		private string staticPart;
 		private bool logMissingFiles;
@@ -17,4 +22,5 @@
 			this.staticPart = staticPart;
 			this.logMissingFiles = logMissingFiles;
+			ItemIconHandler.instance = this;
 		}
 
@@ -47,5 +53,5 @@
 		}
 
-		private bool LoadIcons () {
+		public bool LoadIcons () {
 			lock (icons) {
 				if (loaded) {
