diff options
| author | 2020-11-25 17:34:55 +0100 | |
|---|---|---|
| committer | 2020-11-27 08:58:36 +0100 | |
| commit | bcbcd3e8b6bc95c96d7c316d032b9f774773e961 (patch) | |
| tree | 58975cb9c71dacf226bb8539566df75a58d5d1b9 | |
| parent | fixing punctuation and adding Emojis to messages (diff) | |
add success message after revokestream command
| -rw-r--r-- | bot/exts/moderation/stream.py | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/bot/exts/moderation/stream.py b/bot/exts/moderation/stream.py index ca4284e77..7dd72a95b 100644 --- a/bot/exts/moderation/stream.py +++ b/bot/exts/moderation/stream.py @@ -115,6 +115,7 @@ class Stream(commands.Cog):          not_allowed = not any(Roles.video == role.id for role in user.roles)          if not_allowed:              await user.remove_roles(discord.Object(Roles.video)) +            await ctx.send(f"{Emojis.check_mark}Streaming permission taken from {user.display_name}")          else:              await ctx.send(USER_ALREADY_NOT_ALLOWED_TO_STREAM) | 
