aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Harbys <[email protected]>2020-11-25 17:34:55 +0100
committerGravatar Harbys <[email protected]>2020-11-27 08:58:36 +0100
commitbcbcd3e8b6bc95c96d7c316d032b9f774773e961 (patch)
tree58975cb9c71dacf226bb8539566df75a58d5d1b9
parentfixing punctuation and adding Emojis to messages (diff)
add success message after revokestream command
-rw-r--r--bot/exts/moderation/stream.py1
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)