|
16 | 16 | from dateutil import parser |
17 | 17 |
|
18 | 18 | from core import checks |
19 | | -from core.models import DMDisabled, PermissionLevel, SimilarCategoryConverter, getLogger |
| 19 | +from core.models import DMDisabled, PermissionLevel, SimilarCategoryConverter, UnseenFormatter, getLogger |
20 | 20 | from core.paginator import EmbedPaginatorSession |
21 | 21 | from core.thread import Thread |
22 | 22 | from core.time import UserFriendlyTime, human_timedelta |
@@ -583,9 +583,9 @@ async def args(self, ctx, *, name: str.lower = None): |
583 | 583 | if not self.bot.args: |
584 | 584 | embed = discord.Embed( |
585 | 585 | color=self.bot.error_color, |
586 | | - description="You dont have any args at the moment.", |
| 586 | + description="You don't have any args at the moment.", |
587 | 587 | ) |
588 | | - embed.set_footer(text=f'Check "{self.bot.prefix}help args add" to add an arg.') |
| 588 | + embed.set_footer(text=f'See "{self.bot.prefix}help args add" for how to add an arg.') |
589 | 589 | embed.set_author( |
590 | 590 | name="Args", |
591 | 591 | icon_url=self.bot.get_guild_icon(guild=ctx.guild, size=128), |
@@ -626,7 +626,7 @@ async def args_add(self, ctx, name: str.lower, *, value: commands.clean_content) |
626 | 626 | """ |
627 | 627 | Add an arg. |
628 | 628 |
|
629 | | - Simply to add an arg, do: ``` |
| 629 | + To add an arg, simply do: ``` |
630 | 630 | {prefix}args add name value |
631 | 631 | ``` |
632 | 632 | """ |
@@ -1723,7 +1723,7 @@ async def reply(self, ctx, *, msg: str = ""): |
1723 | 1723 | """ |
1724 | 1724 |
|
1725 | 1725 | if self.bot.args: |
1726 | | - msg = self.bot.formatter.format(msg, **self.bot.args) |
| 1726 | + msg = UnseenFormatter().format(msg, **self.bot.args) |
1727 | 1727 |
|
1728 | 1728 | if len(msg) > 4096: |
1729 | 1729 | return await ctx.send( |
|
0 commit comments