From 280df4f5e012a94d7bf656c3bb2c242a10dbd477 Mon Sep 17 00:00:00 2001 From: WhatDidYouExpect <89535984+WhatDidYouExpect@users.noreply.github.com> Date: Fri, 18 Jul 2025 01:26:55 +0200 Subject: [PATCH] fuck it one liner --- bot.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/bot.py b/bot.py index 8af816b..6833874 100644 --- a/bot.py +++ b/bot.py @@ -68,11 +68,7 @@ slash_commands_enabled: bool = False intents: discord.Intents = discord.Intents.default() intents.messages = True intents.message_content = True -bot: commands.Bot = commands.Bot( - command_prefix=PREFIX, - intents=intents, - allowed_mentions=discord.AllowedMentions(everyone=False, roles=False, users=False, replied_user=True) -) +bot: commands.Bot = commands.Bot(command_prefix=PREFIX, intents=intents, allowed_mentions=discord.AllowedMentions(everyone=False, roles=False, users=False, replied_user=True)) # Load memory and Markov model for text generation memory: List[str] = load_memory()