1
0
Fork 0
mirror of https://gitlab.jonasled.de/jonasled/discordbot synced 2024-10-03 07:48:58 +02:00

removed chat command, because of abuse

This commit is contained in:
Jonas Leder 2020-06-26 10:29:33 +02:00
parent 0a335dadc8
commit 39eb3e0c63

19
bot.py
View file

@ -437,24 +437,7 @@ async def fail(ctx):
# | | | || |_| |\__ \| || (__ | |_/ /| (_) || |_
# \_| |_/ \__,_||___/|_| \___|\____/ \___/ \__|
#
#
@bot.command(brief="sends a message in the name of the bot")
async def chat(ctx, *message : str):
newMessage = ""
for messages in message:
newMessage = newMessage + messages + " "
await ctx.send(newMessage[:-1])
# _ _
# | | | |
# ___ | |__ __ _ | |_
# / __|| '_ \ / _` || __|
# | (__ | | | || (_| || |_
# \___||_| |_| \__,_| \__|
#
#
#
@bot.command(brief="adds a song to the playlist")
async def play(ctx, songURL : str):