diff --git a/bot.py b/bot.py index 6f0671a..c3198c0 100644 --- a/bot.py +++ b/bot.py @@ -40,6 +40,10 @@ async def times(ctx, left: int, right: int): async def say(ctx, message): await ctx.send(message) +@bot.command() +async def cool(ctx): + await ctx.send(f'{ctx.author} is cool!') + @bot.command() async def update(ctx): subprocess.Popen('./update.sh')