diff options
-rw-r--r-- | bot/cogs/verification.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bot/cogs/verification.py b/bot/cogs/verification.py index a5ad657a3..d43e795f0 100644 --- a/bot/cogs/verification.py +++ b/bot/cogs/verification.py @@ -107,6 +107,11 @@ class Verification: except NotFound: log.trace("No message found, it must have been deleted by another bot.") + await ctx.send( + f"{ctx.author.mention} Subscribed to <#{Channels.announcements}> notifications.", + delete_after=5 + ) + @command(name="unsubscribe", aliases=["unsubscribe()"]) @with_role(Roles.announcements) @in_channel(Channels.bot) @@ -125,6 +130,11 @@ class Verification: except NotFound: log.trace("No message found, it must have been deleted by another bot.") + await ctx.send( + f"{ctx.author.mention} Unsubscribed from <#{Channels.announcements}> notifications.", + delete_after=5 + ) + def setup(bot): bot.add_cog(Verification(bot)) |