Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(game): legacy commands #239

Open
wants to merge 14 commits into
base: master
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
feat(game): Implement /dc command
  • Loading branch information
MeikelLP committed Nov 27, 2024
commit c4584e0d74b2f3cd88a63743f91c7653d969c1c3
3 changes: 2 additions & 1 deletion src/Libraries/Game.Server/Commands/KickCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
namespace QuantumCore.Game.Commands
{
[Command("kick", "Kick a player from the Server")]
[Command("dc", "Kick a player from the Server")]
public class KickCommand : ICommandHandler<KickCommandOptions>
{
private readonly IWorld _world;
Expand Down Expand Up @@ -41,4 +42,4 @@ public class KickCommandOptions
{
[Value(0, Required = true)] public string? Target { get; set; }
}
}
}
Loading