diff options
author | 2021-06-27 16:00:17 +0100 | |
---|---|---|
committer | 2021-06-27 16:00:17 +0100 | |
commit | f7f73f28e1bae94e000a4b0cd4d89d646d1843ea (patch) | |
tree | 7697d088d5248bfab69afe478ed52ac4140cfa08 | |
parent | Merge pull request #1657 from python-discord/docker-compose/postgres-13 (diff) |
Add alias for voice_verify command
Added voice-verify alias as the channel and tag are hyphenated so it may be confusing as it is currently.
-rw-r--r-- | bot/exts/moderation/voice_gate.py | 2 |
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: |