fixed whitespace to fit with code style

This commit is contained in:
lokulin 2014-11-11 00:55:42 +11:00
parent b0988a8960
commit 7fa2e0d02e
4 changed files with 68 additions and 67 deletions

View file

@ -5,16 +5,16 @@ using System.Text;
namespace MinecraftClient.Commands
{
public class List : Command
{
public override string CMDName { get { return "list"; } }
public override string CMDDesc { get { return "list: get the player list."; } }
public class List : Command
{
public override string CMDName { get { return "list"; } }
public override string CMDDesc { get { return "list: get the player list."; } }
public override string Run(McTcpClient handler, string command)
{
handler.ListPlayers();
return "";
}
}
public override string Run(McTcpClient handler, string command)
{
handler.ListPlayers();
return "";
}
}
}