From c2ff23d31948986a74e97d9b236dd1092c82a7cc Mon Sep 17 00:00:00 2001 From: Paillat Date: Mon, 28 Nov 2022 08:26:00 +0100 Subject: [PATCH] Update the ai's name. --- code/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/code.py b/code/code.py index ddbddcb..9f6a7c8 100644 --- a/code/code.py +++ b/code/code.py @@ -232,7 +232,7 @@ async def transcript(ctx): await ctx.defer() for msg in messages: if msg.author.bot: - transcript += f"AI: {msg.content}\n" + transcript += f"Donald Bot \"Botator\": {msg.content}\n" else: transcript += f"{msg.author.display_name}: {msg.content}\n" #save the transcript in a txt file called transcript.txt. If the file already exists, delete it and create a new one