diff options
| -rw-r--r-- | bot/exts/moderation/verification.py | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/bot/exts/moderation/verification.py b/bot/exts/moderation/verification.py index 89e1cdd7e..659c7414f 100644 --- a/bot/exts/moderation/verification.py +++ b/bot/exts/moderation/verification.py @@ -541,7 +541,10 @@ class Verification(Cog):          raw_member = await self.bot.http.get_member(member.guild.id, member.id) -        # Only send the message to users going through our gating system +        # If the user has the is_pending flag set, they will be using the alternate +        # gate and will not need a welcome DM with verification instructions. +        # We will send them an alternate DM once they verify with the welcome +        # video.          if raw_member["is_pending"]:              await self.member_gating_cache.set(raw_member.id, True)              return | 
