diff options
Diffstat (limited to 'bot/seasons')
| -rw-r--r-- | bot/seasons/evergreen/game.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/bot/seasons/evergreen/game.py b/bot/seasons/evergreen/game.py index 97df2bdb..7774484e 100644 --- a/bot/seasons/evergreen/game.py +++ b/bot/seasons/evergreen/game.py @@ -243,7 +243,7 @@ class Games(Cog):          """Find games by name."""          lines = await self.search_games(search_term) -        await LinePaginator.paginate((line for line in lines), ctx, Embed(title=f"Game Search Results: {search_term}")) +        await LinePaginator.paginate(lines, ctx, Embed(title=f"Game Search Results: {search_term}"), empty=False)      @games.command(name="company", aliases=["companies"])      async def company(self, ctx: Context, amount: int = 5) -> None: | 
