aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Matteo Bertucci <[email protected]>2021-06-27 17:03:19 +0200
committerGravatar GitHub <[email protected]>2021-06-27 17:03:19 +0200
commite02dd06161348e8775e2c4548a8a36b5a25cda87 (patch)
tree7697d088d5248bfab69afe478ed52ac4140cfa08
parentMerge pull request #1657 from python-discord/docker-compose/postgres-13 (diff)
parentAdd alias for voice_verify command (diff)
Merge pull request #1658 from python-discord/wookie184-voiceverify-alias
Add alias for voice_verify command
-rw-r--r--bot/exts/moderation/voice_gate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/voice_gate.py b/bot/exts/moderation/voice_gate.py
index aa8a4d209..8494a1e2e 100644
--- a/bot/exts/moderation/voice_gate.py
+++ b/bot/exts/moderation/voice_gate.py
@@ -118,7 +118,7 @@ class VoiceGate(Cog):
await self.redis_cache.set(member.id, message.id)
return True, message.channel
- @command(aliases=('voiceverify',))
+ @command(aliases=("voiceverify", "voice-verify",))
@has_no_roles(Roles.voice_verified)
@in_whitelist(channels=(Channels.voice_gate,), redirect=None)
async def voice_verify(self, ctx: Context, *_) -> None: