From 61550b513bc773d317084958adfe60a88f4864bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Hells=C3=A9n?= Date: Sat, 20 Jul 2024 05:21:44 +0200 Subject: [PATCH] Remove bold username --- main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/main.py b/main.py index 0651756..6a87585 100644 --- a/main.py +++ b/main.py @@ -160,6 +160,7 @@ async def on_message(message: discord.Message) -> None: # Remove LoviBot: from the response if response: response = response.removeprefix("LoviBot:").strip() + response = response.removeprefix("**LoviBot:**").strip() if response: logger.info("Responding to message: %s with: %s", message.content, response)