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:
parent
017afcfcee
commit
508f96c3da
1 changed files with 3 additions and 1 deletions
|
@ -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):
|
||||||
|
|
Loading…
Reference in a new issue