mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-13 21:24:34 +01:00
18 lines
443 B
C#
18 lines
443 B
C#
namespace PemukulPaku.GameServer.Commands
|
|
{
|
|
[CommandHandler("test", "Test command used for testing")]
|
|
public class TestCommand : Command
|
|
{
|
|
public override void Run(Session session, string[] args)
|
|
{
|
|
if (args.Length < 3)
|
|
{
|
|
c.Error("Not enough arguments");
|
|
return;
|
|
}
|
|
|
|
c.Log($"Testing {args[0]} {args[1]} {args[2]}");
|
|
}
|
|
}
|
|
}
|