aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2022-03-30 13:26:06 +0100
committerGravatar GitHub <[email protected]>2022-03-30 13:26:06 +0100
commit46d3f877b569a8a6db8a50fbd80ff49c90ba04cf (patch)
tree0f7b9d763be3db0fe48e77a5d98755260f85c81d
parentMerge pull request #2121 from python-discord/log-voiceverify-messages (diff)
parentRemove modlog ignore for voice verif (diff)
Merge pull request #2111 from python-discord/log-voice-role-assignments
Remove modlog ignore for voice verifcation
-rw-r--r--bot/exts/moderation/voice_gate.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bot/exts/moderation/voice_gate.py b/bot/exts/moderation/voice_gate.py
index a3228d4fb..d6b8f1239 100644
--- a/bot/exts/moderation/voice_gate.py
+++ b/bot/exts/moderation/voice_gate.py
@@ -10,7 +10,7 @@ from discord.ext.commands import Cog, Context, command
from bot.api import ResponseCodeError
from bot.bot import Bot
-from bot.constants import Channels, Event, MODERATION_ROLES, Roles, VoiceGate as GateConf
+from bot.constants import Channels, MODERATION_ROLES, Roles, VoiceGate as GateConf
from bot.decorators import has_no_roles, in_whitelist
from bot.exts.moderation.modlog import ModLog
from bot.log import get_logger
@@ -191,7 +191,6 @@ class VoiceGate(Cog):
await ctx.channel.send(ctx.author.mention, embed=embed)
return
- self.mod_log.ignore(Event.member_update, ctx.author.id)
embed = discord.Embed(
title="Voice gate passed",
description="You have been granted permission to use voice channels in Python Discord.",