diff options
author | 2019-10-25 16:01:12 -0700 | |
---|---|---|
committer | 2019-10-25 17:11:45 -0700 | |
commit | 6077e8a18fb5598d5dfc979e0bae1fe199c1945f (patch) | |
tree | 163cc81bfd4f9c4319b542126c702c84e3c642eb | |
parent | Superstarify: make mod log title lowercase for consistency (diff) |
Moderation: remove full stops from pardon embed titles
-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] ) |