2017-10-02 21:57:48 +02:00
|
|
|
|
using System.Threading.Tasks;
|
2017-04-12 21:49:04 +02:00
|
|
|
|
using Discord.Commands;
|
2017-10-12 16:34:10 +02:00
|
|
|
|
using Geekbot.net.Lib;
|
2017-04-12 21:49:04 +02:00
|
|
|
|
|
2018-05-03 00:56:06 +02:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|