modified: bot.py

This commit is contained in:
SimolZimol
2024-09-02 20:39:24 +02:00
parent fa95c96c12
commit b093d88178

4
bot.py
View File

@@ -82,8 +82,8 @@ intents = discord.Intents.default()
intents.message_content = True intents.message_content = True
intents.reactions = True intents.reactions = True
python = sys.executable python = sys.executable
vision_enabled = bool.getenv("VISION_ENABLED") vision_enabled = os.getenv("VISION_ENABLED")
askmultus_enabled = bool.getenv("ASKMULTUS_ENABLED") askmultus_enabled = os.getenv("ASKMULTUS_ENABLED")
client = commands.Bot(command_prefix='-', intents=intents, owner_id = OWNER_ID) client = commands.Bot(command_prefix='-', intents=intents, owner_id = OWNER_ID)