diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/moderation/modlog.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/exts/moderation/modlog.py b/bot/exts/moderation/modlog.py index 0dc2e84b5..b09eb2d14 100644 --- a/bot/exts/moderation/modlog.py +++ b/bot/exts/moderation/modlog.py @@ -838,7 +838,8 @@ class ModLog(Cog, name="ModLog"):          """Log member voice state changes to the voice log channel."""          if (              member.guild.id != GuildConstant.id -            or (before.channel and before.channel.id in GuildConstant.modlog_blacklist) +            or (before.channel and self.is_channel_ignored(before.channel.id)) +            or (after.channel and self.is_channel_ignored(after.channel.id))          ):              return  |