diff --git a/leaderboard/leaderboard.py b/leaderboard/leaderboard.py index cafb4dc..926fa41 100644 --- a/leaderboard/leaderboard.py +++ b/leaderboard/leaderboard.py @@ -195,7 +195,8 @@ class Leaderboard(commands.Cog): async def globalboard(self, ctx: commands.Context): """Global leaderboard commands.""" if ctx.invoked_subcommand is None: - await self.show_leaderboard(ctx) + # Let the default help command handle it + return @globalboard.command(name="show") async def show_leaderboard(self, ctx: commands.Context, page: int = 1):