fix(commands/voice/join): only join when author is in voice channel
This commit is contained in:
parent
ea09f291e5
commit
c8c4756cc3
@ -1,5 +1,3 @@
|
||||
import disnake
|
||||
|
||||
import utils
|
||||
|
||||
from .utils import command_allowed
|
||||
@ -10,8 +8,6 @@ async def join(message):
|
||||
return await message.guild.voice_client.move_to(message.channel)
|
||||
elif message.author.voice:
|
||||
await message.author.voice.channel.connect()
|
||||
elif isinstance(message.channel, disnake.VoiceChannel):
|
||||
await message.channel.connect()
|
||||
else:
|
||||
await utils.reply(message, "you are not connected to a voice channel!")
|
||||
return
|
||||
|
Loading…
x
Reference in New Issue
Block a user