Index: binary-improvements/AllocsCommands/AllocsCommands.csproj
===================================================================
--- binary-improvements/AllocsCommands/AllocsCommands.csproj	(revision 250)
+++ binary-improvements/AllocsCommands/AllocsCommands.csproj	(revision 251)
@@ -49,5 +49,5 @@
     <Compile Include="Commands\ShowInventory.cs" />
     <Compile Include="Commands\TeleportPlayer.cs" />
-    <Compile Include="PrivateMassageConnections.cs" />
+    <Compile Include="PrivateMessageConnections.cs" />
     <Compile Include="Chat.cs" />
     <Compile Include="Commands\ListItems.cs" />
Index: binary-improvements/AllocsCommands/Chat.cs
===================================================================
--- binary-improvements/AllocsCommands/Chat.cs	(revision 250)
+++ binary-improvements/AllocsCommands/Chat.cs	(revision 251)
@@ -8,5 +8,5 @@
 			string senderName;
 			if (_sender != null) {
-				PrivateMassageConnections.SetLastPMSender (_sender, _receiver);
+				PrivateMessageConnections.SetLastPMSender (_sender, _receiver);
 				senderName = _sender.playerName;
 			} else {
Index: binary-improvements/AllocsCommands/Commands/Reply.cs
===================================================================
--- binary-improvements/AllocsCommands/Commands/Reply.cs	(revision 250)
+++ binary-improvements/AllocsCommands/Commands/Reply.cs	(revision 251)
@@ -31,5 +31,5 @@
 			string message = _params [0];
 
-			ClientInfo receiver = PrivateMassageConnections.GetLastPMSenderForPlayer (_sender);
+			ClientInfo receiver = PrivateMessageConnections.GetLastPMSenderForPlayer (_sender);
 			if (receiver != null) {
 				Chat.SendMessage (receiver, _sender, message);
Index: binary-improvements/AllocsCommands/PrivateMassageConnections.cs
===================================================================
--- binary-improvements/AllocsCommands/PrivateMassageConnections.cs	(revision 250)
+++ 	(revision )
@@ -1,25 +1,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace AllocsFixes.CustomCommands
-{
-	public class PrivateMassageConnections
-	{
-		private static Dictionary<ClientInfo, ClientInfo> senderOfLastPM = new Dictionary<ClientInfo, ClientInfo> ();
-
-		public static void SetLastPMSender (ClientInfo _sender, ClientInfo _receiver)
-		{
-			if (senderOfLastPM.ContainsKey (_receiver))
-				senderOfLastPM [_receiver] = _sender;
-			else
-				senderOfLastPM.Add (_receiver, _sender);
-		}
-
-		public static ClientInfo GetLastPMSenderForPlayer (ClientInfo _player)
-		{
-			if (senderOfLastPM.ContainsKey (_player))
-				return senderOfLastPM [_player];
-			return null;
-		}
-	}
-}
Index: binary-improvements/AllocsCommands/PrivateMessageConnections.cs
===================================================================
--- binary-improvements/AllocsCommands/PrivateMessageConnections.cs	(revision 251)
+++ binary-improvements/AllocsCommands/PrivateMessageConnections.cs	(revision 251)
@@ -0,0 +1,25 @@
+using System;
+using System.Collections.Generic;
+
+namespace AllocsFixes.CustomCommands
+{
+	public class PrivateMessageConnections
+	{
+		private static Dictionary<ClientInfo, ClientInfo> senderOfLastPM = new Dictionary<ClientInfo, ClientInfo> ();
+
+		public static void SetLastPMSender (ClientInfo _sender, ClientInfo _receiver)
+		{
+			if (senderOfLastPM.ContainsKey (_receiver))
+				senderOfLastPM [_receiver] = _sender;
+			else
+				senderOfLastPM.Add (_receiver, _sender);
+		}
+
+		public static ClientInfo GetLastPMSenderForPlayer (ClientInfo _player)
+		{
+			if (senderOfLastPM.ContainsKey (_player))
+				return senderOfLastPM [_player];
+			return null;
+		}
+	}
+}
