mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
23 lines
724 B
C#
23 lines
724 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Brigadier.NET;
|
|
|
|
namespace MinecraftClient.Commands
|
|
{
|
|
public class List : Command
|
|
{
|
|
public override string CmdName { get { return "list"; } }
|
|
public override string CmdUsage { get { return "list"; } }
|
|
public override string CmdDesc { get { return "cmd.list.desc"; } }
|
|
|
|
public override void RegisterCommand(McClient handler, CommandDispatcher<CommandSource> dispatcher)
|
|
{
|
|
}
|
|
|
|
public override string Run(McClient handler, string command, Dictionary<string, object>? localVars)
|
|
{
|
|
return Translations.Get("cmd.list.players", String.Join(", ", handler.GetOnlinePlayers()));
|
|
}
|
|
}
|
|
}
|
|
|