From b093d881786f814575423d8089d434e1867dafcc Mon Sep 17 00:00:00 2001 From: SimolZimol <70102430+SimolZimol@users.noreply.github.com> Date: Mon, 2 Sep 2024 20:39:24 +0200 Subject: [PATCH] modified: bot.py --- bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index 103028b..67bd5ae 100644 --- a/bot.py +++ b/bot.py @@ -82,8 +82,8 @@ intents = discord.Intents.default() intents.message_content = True intents.reactions = True python = sys.executable -vision_enabled = bool.getenv("VISION_ENABLED") -askmultus_enabled = bool.getenv("ASKMULTUS_ENABLED") +vision_enabled = os.getenv("VISION_ENABLED") +askmultus_enabled = os.getenv("ASKMULTUS_ENABLED") client = commands.Bot(command_prefix='-', intents=intents, owner_id = OWNER_ID)