From 508f96c3da7d4cad5c6a29937482a44f1668a950 Mon Sep 17 00:00:00 2001 From: Myned Date: Wed, 4 Jan 2023 11:47:05 -0600 Subject: [PATCH] Fix limbo index error --- commands/info.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/commands/info.py b/commands/info.py index b3d9304..b23c31e 100644 --- a/commands/info.py +++ b/commands/info.py @@ -47,8 +47,10 @@ async def limbo(context): timeout=600, ) await navigator.send(context.interaction, ephemeral=True) - else: + elif pages: await context.respond(pages[0]) + else: + await context.respond("***All members accounted for***") def load(bot):