mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-05 03:05:04 +00:00
So true
This commit is contained in:
parent
7039e760db
commit
e917010e08
1 changed files with 1 additions and 1 deletions
|
@ -141,7 +141,7 @@ CommandHandler.RegisterCommand("tag", args => {
|
|||
if (args.Length < 3)
|
||||
return optionUsage;
|
||||
switch (args[0]) {
|
||||
case "time" when args.Length == 3: {
|
||||
case "time" when args.Length == 4: {
|
||||
if (args[1] != "*" && server.Clients.All(x => x.Name != args[1])) return $"Cannot find user {args[1]}";
|
||||
Client? client = server.Clients.FirstOrDefault(x => x.Name == args[1]);
|
||||
if (!ushort.TryParse(args[2], out ushort minutes)) return $"Invalid time for minutes {args[2]} (range: 0-65535)";
|
||||
|
|
Loading…
Reference in a new issue