geekbot/Geekbot.net/Commands/Utils/Ping.cs

15 lines
353 B
C#
Raw Normal View History

using System.Threading.Tasks;
2017-04-12 21:49:04 +02:00
using Discord.Commands;
namespace Geekbot.net.Commands.Utils
2017-04-12 21:49:04 +02:00
{
public class Ping : ModuleBase
{
2017-09-15 22:56:03 +02:00
[Command("👀", RunMode = RunMode.Async)]
[Summary("Look at the bot.")]
2017-04-19 19:23:22 +02:00
public async Task Eyes()
2017-04-12 21:49:04 +02:00
{
2017-04-19 19:23:22 +02:00
await ReplyAsync("S... Stop looking at me... baka!");
2017-04-12 21:49:04 +02:00
}
}
}