[Core Commands] Fix [p]set custominfo error (#3923)

This commit is contained in:
Flame442 2020-06-11 12:46:30 -04:00 committed by GitHub
parent 1f845a4119
commit f0a4c1c252
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1449,7 +1449,7 @@ class Core(commands.Cog, CoreLogic):
await ctx.send(_("The custom text has been set."))
await ctx.invoke(self.info)
else:
await ctx.bot.send(_("Characters must be fewer than 1024."))
await ctx.send(_("Text must be fewer than 1024 characters long."))
@_set.command()
@checks.is_owner()