1
0
Fork 0
mirror of synced 2024-06-03 11:14:33 +12:00

Add a likely reason to music timeout message

This commit is contained in:
ddlr 2017-03-01 23:17:51 +13:00
parent 3050e4da4f
commit b795c4e56f

View file

@ -384,7 +384,8 @@ class Music:
except discord.InvalidArgument:
await self.bot.say('This is not a voice channel...')
except (asyncio.TimeoutError, discord.ConnectionClosed):
await self.bot.say("I failed to connect! This can sometimes be caused by your server region being far away."
await self.bot.say("I failed to connect! This usually happens if I don't have permission to join the"
" channel, but can sometimes be caused by your server region being far away."
" Otherwise this is an issue on Discord's end, causing the connect to timeout!")
await self.remove_voice_client(channel.server)
else:
@ -405,7 +406,8 @@ class Music:
try:
success = await self.create_voice_client(summoned_channel)
except (asyncio.TimeoutError, discord.ConnectionClosed):
await self.bot.say("I failed to connect! This can sometimes be caused by your server region being far away."
await self.bot.say("I failed to connect! This usually happens if I don't have permission to join the"
" channel, but can sometimes be caused by your server region being far away."
" Otherwise this is an issue on Discord's end, causing the connect to timeout!")
await self.remove_voice_client(summoned_channel.server)
return False