Files
Kehyeedra/Kehyeedra3/Commands/Stats.cs
2020-04-06 16:46:38 +03:00

20 lines
509 B
C#

using Discord.Commands;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace Kehyeedra3.Commands
{
[Group]
public class Stats : ModuleBase ///////////////////////////////////////////////
{
[Command("ping"), Summary("Shows ping to server")]
public async Task Pong()
{
await Context.Channel.TriggerTypingAsync();
await ReplyAsync($"My current ping is {Bot._bot.Latency}ms");
}
}
}