From 83430bc0a4da2d94781934848c69e237e6a1dbc2 Mon Sep 17 00:00:00 2001 From: Rhys <44934807+ssyyhhrr@users.noreply.github.com> Date: Sun, 6 Nov 2022 16:58:47 +0000 Subject: [PATCH] Update main.py --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 8043b9a..750f2dc 100644 --- a/main.py +++ b/main.py @@ -13,7 +13,7 @@ TOKEN = os.getenv("DISCORD_TOKEN") INTENTS = discord.Intents.default() INTENTS.members = True -bot = commands.AutoShardedBot(command_prefix=commands.when_mentioned_or("!"), owner_id=518124039714242562, intents=INTENTS) +bot = commands.AutoShardedBot(command_prefix=commands.when_mentioned_or("!"), owner_id=os.getenv("DISCORD_ID"), intents=INTENTS) jackpotEmbed = None participants = {} @@ -255,4 +255,4 @@ def setConfig(): def didWin(colour, select): return (colour == 'red' and select == 0) or (colour == 'black' and select == 1) -bot.run(TOKEN) \ No newline at end of file +bot.run(TOKEN)