diff --git a/bot.py b/bot.py index 8d4b6fa..af3d20e 100644 --- a/bot.py +++ b/bot.py @@ -25,22 +25,6 @@ async def on_ready(): print(f'Logged in as {bot.user}') print('------') -@bot.command() -async def add(ctx, left: int, right: int): - await ctx.send(left + right) - -@bot.command() -async def sub(ctx, left: int, right: int): - await ctx.send(left - right) - -@bot.command() -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 cool(ctx): cool_factor = round(random.uniform(0, 100), 2)