diff --git a/bot.py b/bot.py index 7226912..6f0671a 100644 --- a/bot.py +++ b/bot.py @@ -36,6 +36,10 @@ async def sub(ctx, left: int, right: int): async def times(ctx, left: int, right: int): await ctx.send(left * right) +@bot.command() +async def say(ctx, message): + await ctx.send(message) + @bot.command() async def update(ctx): subprocess.Popen('./update.sh')