Index: /binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj
===================================================================
--- /binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj	(revision 195)
+++ /binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj	(revision 196)
@@ -123,4 +123,5 @@
     <Compile Include="src\JSON\JSONNull.cs" />
     <Compile Include="src\JSON\MalformedJSONException.cs" />
+    <Compile Include="src\CustomCommands\Unban.cs" />
   </ItemGroup>
   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
Index: /binary-improvements/7dtd-server-fixes/src/CustomCommands/Unban.cs
===================================================================
--- /binary-improvements/7dtd-server-fixes/src/CustomCommands/Unban.cs	(revision 196)
+++ /binary-improvements/7dtd-server-fixes/src/CustomCommands/Unban.cs	(revision 196)
@@ -0,0 +1,49 @@
+using System;
+using System.Collections.Generic;
+
+namespace AllocsFixes.CustomCommands
+{
+	public class Unban : ConsoleCommand
+	{
+		public Unban (ConsoleSdtd cons) : base(cons)
+		{
+		}
+
+		public override string Description ()
+		{
+			return "unban a player";
+		}
+
+		public override string[] Names ()
+		{
+			return new string[] { "unban", string.Empty };
+		}
+
+		public override void Run (string[] _params)
+		{
+			try {
+				if (_params.Length != 1) {
+					m_Console.SendResult ("Usage: unban <steamid>");
+					return;
+				}
+
+				long tempLong;
+				if (_params [0].Length != 17 || !long.TryParse (_params [0], out tempLong)) {
+					m_Console.SendResult ("Not a valid Steam ID.");
+					return;
+				}
+
+				AdminTools at = CommonMappingFunctions.GetGameManager ().adminTools;
+				if (!at.isBanned (_params [0])) {
+					m_Console.SendResult ("Steam ID is not banned.");
+					return;
+				}
+
+				at.RemoveBan (_params [0]);
+				m_Console.SendResult ("Removed ban for Steam ID " + _params [0]);
+			} catch (Exception e) {
+				Log.Out ("Error in Unban.Run: " + e);
+			}
+		}
+	}
+}
Index: /binary-improvements/bin/Release/7dtd-server-fixes_version.txt
===================================================================
--- /binary-improvements/bin/Release/7dtd-server-fixes_version.txt	(revision 195)
+++ /binary-improvements/bin/Release/7dtd-server-fixes_version.txt	(revision 196)
@@ -1,1 +1,1 @@
-Version:       0.93.5374.40502
+Version:       0.93.5375.21616
