diff options
-rw-r--r-- | bot/cogs/moderation/infractions.py | 2 | ||||
-rw-r--r-- | bot/cogs/moderation/superstarify.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/bot/cogs/moderation/infractions.py b/bot/cogs/moderation/infractions.py index 0e29b02f7..2713a1b68 100644 --- a/bot/cogs/moderation/infractions.py +++ b/bot/cogs/moderation/infractions.py @@ -254,7 +254,7 @@ class Infractions(InfractionScheduler, commands.Cog): # DM the user about the expiration. notified = await utils.notify_pardon( user=user, - title="You have been unmuted.", + title="You have been unmuted", content="You may now send messages in the server.", icon_url=utils.INFRACTION_ICONS["mute"][1] ) diff --git a/bot/cogs/moderation/superstarify.py b/bot/cogs/moderation/superstarify.py index 518bb3bae..f43f3d027 100644 --- a/bot/cogs/moderation/superstarify.py +++ b/bot/cogs/moderation/superstarify.py @@ -200,7 +200,7 @@ class Superstarify(InfractionScheduler, Cog): # DM the user about the expiration. notified = await utils.notify_pardon( user=user, - title="You are no longer superstarified.", + title="You are no longer superstarified", content="You may now change your nickname on the server.", icon_url=utils.INFRACTION_ICONS["superstar"][1] ) |