1
0
Fork 0
mirror of synced 2024-06-18 18:44:33 +12:00

Merge pull request #16 from ddlr/music-py

Add a likely reason to music timeout message
This commit is contained in:
Dan Hess 2017-03-01 17:17:45 -06:00 committed by GitHub
commit 7382993490

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