oh yeah woo yeah
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
509 B

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");
}
}
}