1
0
Fork 0
mirror of https://github.com/myned/watcher.git synced 2024-11-01 12:22:38 +00:00

Fix limbo index error

This commit is contained in:
Myned 2023-01-04 11:47:05 -06:00
parent 017afcfcee
commit 508f96c3da
No known key found for this signature in database
GPG key ID: 28056631D2CF6B1B

View file

@ -47,8 +47,10 @@ async def limbo(context):
timeout=600, timeout=600,
) )
await navigator.send(context.interaction, ephemeral=True) await navigator.send(context.interaction, ephemeral=True)
else: elif pages:
await context.respond(pages[0]) await context.respond(pages[0])
else:
await context.respond("***All members accounted for***")
def load(bot): def load(bot):