From f268d68ca04a5f2f01e745479d69e65bf6002619 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Sat, 11 Jul 2020 02:55:21 +0100 Subject: [PATCH] Removing streaming from play --- cogs/music.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/music.py b/cogs/music.py index 3587fd18..508ef43e 100644 --- a/cogs/music.py +++ b/cogs/music.py @@ -87,7 +87,7 @@ class Music(commands.Cog): """Streams from a url (same as yt, but doesn't predownload)""" async with ctx.typing(): - player = await YTDLSource.from_url(url, loop=self.bot.loop, stream=True) + player = await YTDLSource.from_url(url, loop=self.bot.loop) ctx.voice_client.play(player, after=lambda e: print('Player error: %s' % e) if e else None) await ctx.send('Now playing: {}'.format(player.title))