geekbot/Geekbot.net/Modules/Ping.cs

15 lines
352 B
C#
Raw Normal View History

2017-04-12 21:49:04 +02:00
using System.Threading.Tasks;
2017-04-19 19:23:22 +02:00
using Discord;
2017-04-12 21:49:04 +02:00
using Discord.Commands;
namespace Geekbot.net.Modules
{
public class Ping : ModuleBase
{
2017-04-25 20:59:38 +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
}
}
}