commit
4fa4f1a85b
1 changed files with 11 additions and 3 deletions
|
|
@ -107,12 +107,20 @@ class MusicCog(commands.Cog):
|
||||||
voice = ctx.voice_client
|
voice = ctx.voice_client
|
||||||
voice.stop()
|
voice.stop()
|
||||||
|
|
||||||
'''@commands.command(aliases=['join'])
|
@commands.command(aliases=['join'])
|
||||||
async def connect(self, ctx):
|
async def connect(self, ctx):
|
||||||
channel = ctx.author.voice.channel
|
channel = ctx.author.voice.channel
|
||||||
await channel.connect()
|
try:
|
||||||
|
await channel.connect()
|
||||||
|
except:
|
||||||
|
voice = ctx.voice_client
|
||||||
|
if voice.is_connected():
|
||||||
|
await voice.disconnect()
|
||||||
|
await channel.connect()
|
||||||
|
else:
|
||||||
|
await channel.connect()
|
||||||
|
|
||||||
@commands.command(aliases=['dc','leave'])
|
'''@commands.command(aliases=['dc','leave'])
|
||||||
async def disconnect(self, ctx):
|
async def disconnect(self, ctx):
|
||||||
await ctx.voice_client.disconnect()'''
|
await ctx.voice_client.disconnect()'''
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue