aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Mark <[email protected]>2020-07-22 23:30:53 -0700
committerGravatar GitHub <[email protected]>2020-07-22 23:30:53 -0700
commit14b00ad1fdc065f1f5412a875f31182d4ccfe7a2 (patch)
tree3d433083b686341286fe67e39e8e252530de5bfb
parentCharinfo: paginate the results (diff)
Charinfo: use more descriptive field name
Since the raw field is displayed on every page, but pages are incomplete, it may be unclear whether the field's value is for the current page or for all pages. Co-authored-by: Kieran Siek <[email protected]>
-rw-r--r--bot/cogs/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/utils.py b/bot/cogs/utils.py
index d70fb300d..8171706d0 100644
--- a/bot/cogs/utils.py
+++ b/bot/cogs/utils.py
@@ -148,7 +148,7 @@ class Utils(Cog):
if len(characters) > 1:
# Maximum length possible is 252 so no need to truncate.
- embed.add_field(name='Raw', value=f"`{''.join(raw_list)}`", inline=False)
+ embed.add_field(name='Full Raw Text', value=f"`{''.join(raw_list)}`", inline=False)
await LinePaginator.paginate(char_list, ctx, embed, max_size=2000, empty=False)