diff options
author | 2021-04-30 22:02:07 -0400 | |
---|---|---|
committer | 2021-04-30 22:02:07 -0400 | |
commit | 5c1cf2b5fd94359d42d147ce8687dd27b05e193d (patch) | |
tree | c31e0ad1049cf7733ef7a60766d74b0521b8bc62 | |
parent | feat: Use embed timestamp in modpings off (diff) |
chore: Add the missing 'until'
-rw-r--r-- | bot/exts/moderation/modpings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/modpings.py b/bot/exts/moderation/modpings.py index 274952d8a..1ad5005de 100644 --- a/bot/exts/moderation/modpings.py +++ b/bot/exts/moderation/modpings.py @@ -105,7 +105,7 @@ class ModPings(Cog): self._role_scheduler.schedule_at(duration, mod.id, self.reapply_role(mod)) embed = Embed(timestamp=duration, colour=Colours.bright_green) - embed.set_footer(text="Moderators role has been removed", icon_url=Icons.green_checkmark) + embed.set_footer(text="Moderators role has been removed until", icon_url=Icons.green_checkmark) await ctx.send(embed=embed) @modpings_group.command(name='on') |