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()