diff --git a/pterodactyl/ptero.py b/pterodactyl/ptero.py index 91234a2..07ac11f 100644 --- a/pterodactyl/ptero.py +++ b/pterodactyl/ptero.py @@ -7,7 +7,7 @@ class Pterodactyl(commands.Cog): self.bot = bot self.config = Config.get_conf(self, identifier=457581387213637448123567) self.config.register_guild( - base_url="mc.bloom.host", + base_url=None, api_key=None, server_id=None ) @@ -34,6 +34,6 @@ class Pterodactyl(commands.Cog): else: url = await self.get_url(ctx) except LookupError as e: - await ctx.send(f"Something went wrong.\n{e}") + await ctx.send(f"Something went wrong.\nError: `{e}`") return await ctx.send(url)