Removed most of the test commands

This commit is contained in:
Marco Loewe 2023-11-13 12:23:55 +01:00
parent 87e19f1f28
commit d2d8d8a67b

16
bot.py
View File

@ -25,22 +25,6 @@ async def on_ready():
print(f'Logged in as {bot.user}') print(f'Logged in as {bot.user}')
print('------') 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() @bot.command()
async def cool(ctx): async def cool(ctx):
cool_factor = round(random.uniform(0, 100), 2) cool_factor = round(random.uniform(0, 100), 2)