diff --git a/exclamation_mark_charity/__init__.py b/exclamation_mark_charity/__init__.py index 49dd4da..56a959b 100644 --- a/exclamation_mark_charity/__init__.py +++ b/exclamation_mark_charity/__init__.py @@ -7,6 +7,11 @@ from dotenv import load_dotenv # Setup load_dotenv() +# Owner IDs +HAMMY = 154840866496839680 +NUGGS = 337175192751308801 +LUCA = 216625083186151425 + # Constants BOT_TOKEN = os.environ.get("CHARITY_BOT_TOKEN") BOT_PREFIX = "!" diff --git a/exclamation_mark_charity/runner.py b/exclamation_mark_charity/runner.py index 03afd26..42ad79a 100644 --- a/exclamation_mark_charity/runner.py +++ b/exclamation_mark_charity/runner.py @@ -1,9 +1,14 @@ from discord import Intents, Streaming from discord.ext.commands import Context, Bot -from exclamation_mark_charity import BOT_PREFIX, BOT_TOKEN +from exclamation_mark_charity import BOT_PREFIX, BOT_TOKEN, HAMMY, NUGGS, LUCA -bot = Bot(command_prefix=BOT_PREFIX, intents=Intents.all()) +bot = Bot( + command_prefix=BOT_PREFIX, + intents=Intents.all(), + help_command=None, + owner_ids=(HAMMY, NUGGS, LUCA) +) bot.activity = Streaming(name="!charity", url="https://www.twitch.tv/exclamation_mark_charity")