Index: /binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj
===================================================================
--- /binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj	(revision 207)
+++ /binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj	(revision 208)
@@ -75,5 +75,4 @@
     <Compile Include="src\MapRendering\Constants.cs" />
     <Compile Include="src\CustomCommands\GetTime.cs" />
-    <Compile Include="src\CustomCommands\ListPlayersExtended.cs" />
     <Compile Include="src\CustomCommands\GetGamePrefs.cs" />
     <Compile Include="src\CustomCommands\SayToPlayer.cs" />
@@ -132,4 +131,5 @@
     <Compile Include="src\FileCache\MapTileCache.cs" />
     <Compile Include="src\CustomCommands\webstat.cs" />
+    <Compile Include="src\CustomCommands\ListPlayerIds.cs" />
   </ItemGroup>
   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Index: /binary-improvements/7dtd-server-fixes/src/AssemblyInfo.cs
===================================================================
--- /binary-improvements/7dtd-server-fixes/src/AssemblyInfo.cs	(revision 207)
+++ /binary-improvements/7dtd-server-fixes/src/AssemblyInfo.cs	(revision 208)
@@ -18,5 +18,5 @@
 // and "{Major}.{Minor}.{Build}.*" will update just the revision.
 
-[assembly: AssemblyVersion("0.100.*")]
+[assembly: AssemblyVersion("0.102.*")]
 
 // The following attributes are used to specify the signing key for the assembly, 
Index: /binary-improvements/7dtd-server-fixes/src/CustomCommands/ListPlayerIds.cs
===================================================================
--- /binary-improvements/7dtd-server-fixes/src/CustomCommands/ListPlayerIds.cs	(revision 208)
+++ /binary-improvements/7dtd-server-fixes/src/CustomCommands/ListPlayerIds.cs	(revision 208)
@@ -0,0 +1,46 @@
+using System;
+using System.Collections.Generic;
+
+namespace AllocsFixes.CustomCommands
+{
+	public class ListPlayerIds : ConsoleCommand
+	{
+		public ListPlayerIds (ConsoleSdtd cons) : base(cons)
+		{
+		}
+
+		public override string Description ()
+		{
+			return "lists all players with their IDs for ingame commands";
+		}
+
+		public override string[] Names ()
+		{
+			return new string[] { "listplayerids", "lpi" };
+		}
+
+		public override void Run (string[] _params)
+		{
+			try {
+				World w = CommonMappingFunctions.GetGameManager ().World;
+				int num = 0;
+				foreach (KeyValuePair<int, EntityPlayer> current in w.playerEntities.dict) {
+					m_Console.SendResult (string.Concat (new object[]
+						{
+							string.Empty,
+							++num,
+							". id=",
+							current.Value.entityId,
+							", ",
+							current.Value.EntityName,
+						}
+					)
+					);
+				}
+				m_Console.SendResult ("Total of " + w.playerEntities.list.Count + " in the game");
+			} catch (Exception e) {
+				Log.Out ("Error in ListPlayerIds.Run: " + e);
+			}
+		}
+	}
+}
Index: nary-improvements/7dtd-server-fixes/src/CustomCommands/ListPlayersExtended.cs
===================================================================
--- /binary-improvements/7dtd-server-fixes/src/CustomCommands/ListPlayersExtended.cs	(revision 207)
+++ 	(revision )
@@ -1,46 +1,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace AllocsFixes.CustomCommands
-{
-	public class ListPlayerIds : ConsoleCommand
-	{
-		public ListPlayerIds (ConsoleSdtd cons) : base(cons)
-		{
-		}
-
-		public override string Description ()
-		{
-			return "lists all players with their IDs for ingame commands";
-		}
-
-		public override string[] Names ()
-		{
-			return new string[] { "listplayerids", "lpi" };
-		}
-
-		public override void Run (string[] _params)
-		{
-			try {
-				World w = CommonMappingFunctions.GetGameManager ().World;
-				int num = 0;
-				foreach (KeyValuePair<int, EntityPlayer> current in w.playerEntities.dict) {
-					m_Console.SendResult (string.Concat (new object[]
-						{
-							string.Empty,
-							++num,
-							". id=",
-							current.Value.entityId,
-							", ",
-							current.Value.EntityName,
-						}
-					)
-					);
-				}
-				m_Console.SendResult ("Total of " + w.playerEntities.list.Count + " in the game");
-			} catch (Exception e) {
-				Log.Out ("Error in ListPlayerIds.Run: " + e);
-			}
-		}
-	}
-}
Index: /binary-improvements/bin/Release/7dtd-server-fixes_version.txt
===================================================================
--- /binary-improvements/bin/Release/7dtd-server-fixes_version.txt	(revision 207)
+++ /binary-improvements/bin/Release/7dtd-server-fixes_version.txt	(revision 208)
@@ -1,1 +1,1 @@
-Version:       0.100.5442.30220
+Version:       0.102.5448.37821
