Spaces:
Sleeping
Sleeping
Commit ·
36319cd
1
Parent(s): 1c1c042
Deploy Discord Bot
Browse files
app.py
CHANGED
|
@@ -47,7 +47,7 @@ bot = commands.Bot(command_prefix="/", intents=intents)
|
|
| 47 |
async def on_ready():
|
| 48 |
print(f"Logged in as {bot.user} (ID: {bot.user.id})")
|
| 49 |
synced = await bot.tree.sync()
|
| 50 |
-
|
| 51 |
event.set()
|
| 52 |
print("------")
|
| 53 |
|
|
|
|
| 47 |
async def on_ready():
|
| 48 |
print(f"Logged in as {bot.user} (ID: {bot.user.id})")
|
| 49 |
synced = await bot.tree.sync()
|
| 50 |
+
print(f"Synced commands: {', '.join([s.name for s in synced])}.")
|
| 51 |
event.set()
|
| 52 |
print("------")
|
| 53 |
|