mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-11-07 17:36:07 +00:00
fixed whitespace to fit with code style
This commit is contained in:
parent
b0988a8960
commit
7fa2e0d02e
4 changed files with 68 additions and 67 deletions
|
|
@ -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 "";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue