aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/exts/filters/filtering.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/filters/filtering.py b/bot/exts/filters/filtering.py
index 6c70ab397..5ea18d8f1 100644
--- a/bot/exts/filters/filtering.py
+++ b/bot/exts/filters/filtering.py
@@ -209,7 +209,7 @@ class Filtering(Cog):
@Cog.listener()
async def on_voice_state_update(self, member: Member, before: VoiceState, after: VoiceState) -> None:
- """Checks for bad words in usernames when users join or change voice channels."""
+ """Checks for bad words in usernames when users initially joins a voice channel."""
if after.channel and not before.channel:
await self.check_bad_words_in_name(member)