diff options
author | 2021-04-19 18:40:23 +0100 | |
---|---|---|
committer | 2021-04-19 18:40:23 +0100 | |
commit | 131dab3754da9fc1c3cf770d76bb9deea46f2f8d (patch) | |
tree | ce0698a3204e58f17594f57d15a8c80c73fdb62e | |
parent | Remove unnecessary _ in variable name (diff) |
Improve the wording of the list streamers embed
Co-authored-by: Matteo Bertucci <[email protected]>
-rw-r--r-- | bot/exts/moderation/stream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/stream.py b/bot/exts/moderation/stream.py index e541baeb2..bd93ea492 100644 --- a/bot/exts/moderation/stream.py +++ b/bot/exts/moderation/stream.py @@ -208,7 +208,7 @@ class Stream(commands.Cog): # Only output the message in the pagination lines = [line[1] for line in streamer_info] embed = discord.Embed( - title=f"Members who can stream (`{len(lines)}` total)", + title=f"Members with streaming permission (`{len(lines)}` total)", colour=Colours.soft_green ) await LinePaginator.paginate(lines, ctx, embed, max_size=400, empty=False) |