diff --git a/Server/Program.cs b/Server/Program.cs index cd947a5..980493a 100644 --- a/Server/Program.cs +++ b/Server/Program.cs @@ -73,6 +73,14 @@ server.PacketHandler = (c, p) => { return true; }; +// +// CommandHandler.RegisterCommand("scenario", args => { +// const string optionUsage = "Valid options: split <" +// if (args.Length < 1) +// return +// }); + +CommandHandler.RegisterCommand("list", _ => $"List: {string.Join(", ", server.Clients.Select(x => $"{x.Name} ({x.Id})"))}"); CommandHandler.RegisterCommand("flip", args => { const string optionUsage = "Valid options: list, add , remove , set , pov ";