diff options
author | 2020-03-05 09:00:18 +0200 | |
---|---|---|
committer | 2020-03-05 09:00:18 +0200 | |
commit | 25369cb35930b939eaf29d49cbf9fcce327607f2 (patch) | |
tree | 4227fa5ff6094b0c3224da5153732e16462bc33c | |
parent | Merge branch 'master' into roles-command-pagination (diff) |
(Information Cog, !roles command): Added empty parameter to pagination (False)
-rw-r--r-- | bot/cogs/information.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/information.py b/bot/cogs/information.py index 4dd4a7e75..807c2264d 100644 --- a/bot/cogs/information.py +++ b/bot/cogs/information.py @@ -44,7 +44,7 @@ class Information(Cog): colour=Colour.blurple() ) - await LinePaginator.paginate(role_list, ctx, embed) + await LinePaginator.paginate(role_list, ctx, embed, empty=False) @with_role(*constants.MODERATION_ROLES) @command(name="role") |