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-19 19:23:22 +02:00
|
|
|
|
[Command("👀"), Summary("Look at the bot.")]
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|