From d4693ded6ca6ac8ad2215b5e9ce23e2a41b97ef5 Mon Sep 17 00:00:00 2001 From: lnguy Date: Sun, 7 Jan 2024 09:06:30 +0100 Subject: [PATCH] Remove guild ID in the main file --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 289edc5..6b29605 100644 --- a/src/main.py +++ b/src/main.py @@ -31,7 +31,7 @@ def __init__(self, *, intents: discord.Intents): async def on_ready(self): await self.wait_until_ready() if not self.synced: - await tree.sync(guild=discord.Object(id=645011181739835397)) + await tree.sync() self.synced = True print('Logged on as', self.user)