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)