fuck it one liner

This commit is contained in:
WhatDidYouExpect 2025-07-18 01:26:55 +02:00
parent dec83f1513
commit 280df4f5e0

6
bot.py
View file

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