From 047c79459d3486dbb00eead4364b41a77c348f0b Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 14 Jul 2023 11:16:58 -0400 Subject: [PATCH] `test` error handling now returns if error --- pterodactyl/ptero.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pterodactyl/ptero.py b/pterodactyl/ptero.py index 93e40bf..91234a2 100644 --- a/pterodactyl/ptero.py +++ b/pterodactyl/ptero.py @@ -35,4 +35,5 @@ class Pterodactyl(commands.Cog): url = await self.get_url(ctx) except LookupError as e: await ctx.send(f"Something went wrong.\n{e}") + return await ctx.send(url)