From 8f5ce3de0fccc2cd04070d1eadba6c6fc84ec883 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sun, 26 Jul 2020 13:17:24 +0100 Subject: [PATCH] Specifying that the prefix has to be less than or equal to 5 characters --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index 4cc76a0b..26fb9ee2 100644 --- a/main.py +++ b/main.py @@ -165,7 +165,7 @@ async def change_prefix(ctx, new: Optional[str] = None): # Making sure that errors are handled if prefix is above 5 characters elif new and len(new) > 5: - await ctx.send("The guild prefix must be less than **5** characters!") + await ctx.send("The guild prefix must be less than or equal to **5** characters!") # if no prefix was provided elif not new: