Add owner id's & remove help command

pull/9/head
sgoudham 3 years ago
parent 698fd28a33
commit f95010407d
Signed by: hammy
GPG Key ID: 44E818FD5457EEA4

@ -7,6 +7,11 @@ from dotenv import load_dotenv
# Setup # Setup
load_dotenv() load_dotenv()
# Owner IDs
HAMMY = 154840866496839680
NUGGS = 337175192751308801
LUCA = 216625083186151425
# Constants # Constants
BOT_TOKEN = os.environ.get("CHARITY_BOT_TOKEN") BOT_TOKEN = os.environ.get("CHARITY_BOT_TOKEN")
BOT_PREFIX = "!" BOT_PREFIX = "!"

@ -1,9 +1,14 @@
from discord import Intents, Streaming from discord import Intents, Streaming
from discord.ext.commands import Context, Bot 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") bot.activity = Streaming(name="!charity", url="https://www.twitch.tv/exclamation_mark_charity")

Loading…
Cancel
Save