* Removed BufferFlush() method from StandardCharacter. It was added for testing and never removed.

This commit is contained in:
Scionwest_cp 2012-03-04 00:35:58 -08:00
parent 2622c2d8c7
commit b708a63273

View file

@ -310,10 +310,6 @@ namespace MudEngine.Game.Characters
} }
} }
public void FlushBuffer()
{
}
public delegate void OnConnectHandler(); public delegate void OnConnectHandler();
public event OnConnectHandler OnConnectEvent; public event OnConnectHandler OnConnectEvent;
public void OnConnect() public void OnConnect()
@ -324,6 +320,7 @@ namespace MudEngine.Game.Characters
this.SendMessage(String.Empty); this.SendMessage(String.Empty);
//Log the user in. //Log the user in.
//TODO: What happens if result = false?
Boolean result = this.ExecuteSilentCommand("Login"); Boolean result = this.ExecuteSilentCommand("Login");
this.SendMessage(String.Empty); this.SendMessage(String.Empty);