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

17 lines
417 B
C#
Raw Normal View History

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
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-10-12 16:34:10 +02:00
[Remarks(CommandCategories.Fun)]
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
}
}
}