diff --git a/other_ext/register.py b/other_ext/register.py index 143c7e9..dca23bf 100644 --- a/other_ext/register.py +++ b/other_ext/register.py @@ -2,12 +2,13 @@ import discord from ..exceptions import * from ..bot import DiscordClient from ..player import Player +import os class Extension: auth_channel = 960796520247091201 default_role = 684828780040421388 - def __init__(self, core: DiscordClient, enabled = True): - if not enabled: return None + def __init__(self, core: DiscordClient): + if not os.getenv("REGISTER_ENABLED", None): return None @core.tree.command(name = "register", description = "Привязать дискорд к стиму") @discord.app_commands.describe(profile=core.ANY_INPUT) async def register( diff --git a/other_ext/url_checker.py b/other_ext/url_checker.py index d5defb8..5ba3e12 100644 --- a/other_ext/url_checker.py +++ b/other_ext/url_checker.py @@ -1,7 +1,7 @@ from discord.ext import tasks import discord from ..bot import DiscordClient -import re +import re, os class Extension: allow_domains = ["steamcommunity.com","s.team","tenor.com","tf2.pblr-nyk.pro", "pblr-nyk.pro", "youtu.be", "youtube.com"] @@ -9,6 +9,7 @@ class Extension: allow_roles = [744928190895489074, 976924951447736453] core = None def __init__(self, core: DiscordClient): + if not os.getenv("URLCHECKER_ENABLED", None): return None self.core = core @core.event async def on_message(message: discord.Message): diff --git a/other_ext/webhook_helper.py b/other_ext/webhook_helper.py index a93c7e7..25ca766 100644 --- a/other_ext/webhook_helper.py +++ b/other_ext/webhook_helper.py @@ -3,6 +3,7 @@ import discord from ..bot import DiscordClient import asyncio import traceback +import os class Extension: core = None @@ -14,6 +15,7 @@ class Extension: no_reason = {} def __init__(self, core: DiscordClient): + if not os.getenv("WEBHOOK_HELPER_ENABLED", None): return None self.core = core self.track_guild_id = core.main_server_id