15 lines
No EOL
353 B
C#
15 lines
No EOL
353 B
C#
using System.Threading.Tasks;
|
|
using Discord.Commands;
|
|
|
|
namespace Geekbot.net.Commands.Utils
|
|
{
|
|
public class Ping : ModuleBase
|
|
{
|
|
[Command("👀", RunMode = RunMode.Async)]
|
|
[Summary("Look at the bot.")]
|
|
public async Task Eyes()
|
|
{
|
|
await ReplyAsync("S... Stop looking at me... baka!");
|
|
}
|
|
}
|
|
} |