Switched to OpusVoice

This commit is contained in:
Lukas Blacha
2023-02-07 22:08:20 +01:00
parent 9f61462777
commit 93ec9ca2ec

View File

@@ -196,6 +196,13 @@ else:
elif ctx.voice_client.is_playing(): elif ctx.voice_client.is_playing():
ctx.voice_client.stop() ctx.voice_client.stop()
try:
bot.loop.run_until_complete(bot.start(token=args.token, reconnect=True))
except KeyboardInterrupt:
bot.loop.run_until_complete(bot.close())
finally:
bot.loop.close()
""" """
@bot.event @bot.event
async def on_application_command_error(ctx, error): async def on_application_command_error(ctx, error):
@@ -222,9 +229,4 @@ else:
await ctx.send(embed=embed) await ctx.send(embed=embed)
""" """
try:
bot.loop.run_until_complete(bot.start(token=args.token, reconnect=True))
except KeyboardInterrupt:
bot.loop.run_until_complete(bot.close())
finally:
bot.loop.close()