Index: binary-improvements/MapRendering/ModInfo.xml
===================================================================
--- binary-improvements/MapRendering/ModInfo.xml	(revision 455)
+++ binary-improvements/MapRendering/ModInfo.xml	(revision 456)
@@ -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="44" />
+		<Version value="45" />
 		<Website value="https://7dtd.illy.bz" />
 	</ModInfo>
Index: binary-improvements/MapRendering/WebAndMapRendering.csproj
===================================================================
--- binary-improvements/MapRendering/WebAndMapRendering.csproj	(revision 455)
+++ binary-improvements/MapRendering/WebAndMapRendering.csproj	(revision 456)
@@ -118,4 +118,5 @@
     <Compile Include="SteamLoginApi.cs" />
     <Compile Include="WebCommandResult.cs" />
+    <Compile Include="WebTokens_Legacy.cs" />
   </ItemGroup>
   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Index: binary-improvements/MapRendering/WebTokens_Legacy.cs
===================================================================
--- binary-improvements/MapRendering/WebTokens_Legacy.cs	(revision 456)
+++ binary-improvements/MapRendering/WebTokens_Legacy.cs	(revision 456)
@@ -0,0 +1,24 @@
+using System.Collections.Generic;
+
+namespace AllocsFixes.Web {
+	public class WebTokens_Legacy : ConsoleCmdAbstract {
+		private const string notUsedMessage = "NOT USED - WebTokens are managed through vanilla 7DTD now. Please use the 'webtokens' command instead.";
+		
+		protected override string[] getCommands () {
+			return new[] {"webtokens_legacy"};
+		}
+
+		protected override string getDescription () {
+			return notUsedMessage;
+		}
+
+		protected override string getHelp () {
+			return notUsedMessage;
+		}
+
+		public override void Execute (List<string> _params, CommandSenderInfo _senderInfo) {
+			SdtdConsole.Instance.Output (notUsedMessage);
+		}
+
+	}
+}
Index: binary-improvements/bin/Mods/Allocs_WebAndMapRendering/ModInfo.xml
===================================================================
--- binary-improvements/bin/Mods/Allocs_WebAndMapRendering/ModInfo.xml	(revision 455)
+++ binary-improvements/bin/Mods/Allocs_WebAndMapRendering/ModInfo.xml	(revision 456)
@@ -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="44" />
+		<Version value="45" />
 		<Website value="https://7dtd.illy.bz" />
 	</ModInfo>
