aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Mark <[email protected]>2020-07-22 23:46:51 -0700
committerGravatar GitHub <[email protected]>2020-07-22 23:46:51 -0700
commite15ceb83ac0ac081325ee47b1f6dddc581229197 (patch)
treef02731daa47f3963f03cf8a9c228c865ee5d1723
parentCharinfo: up char limit and reduce line limit (diff)
Charinfo: correct char limit used in error message
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 c0dc284e4..017f3419e 100644
--- a/bot/cogs/utils.py
+++ b/bot/cogs/utils.py
@@ -130,7 +130,7 @@ class Utils(Cog):
)
if len(characters) > 50:
- return await messages.send_denial(ctx, f"Too many characters ({len(characters)}/25)")
+ return await messages.send_denial(ctx, f"Too many characters ({len(characters)}/50)")
def get_info(char: str) -> Tuple[str, str]:
digit = f"{ord(char):x}"