From 678457aafe748e98e9e06e3a3c49daa898b2d5b5 Mon Sep 17 00:00:00 2001 From: DA344 <108473820+DA-344@users.noreply.github.com> Date: Wed, 3 Jan 2024 19:41:16 +0100 Subject: [PATCH] Change "vc.source.title" to "song.title" Signed-off-by: DA344 <108473820+DA-344@users.noreply.github.com> --- docs/voice/playing.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/voice/playing.mdx b/docs/voice/playing.mdx index 541bf77a..1f1f3c76 100644 --- a/docs/voice/playing.mdx +++ b/docs/voice/playing.mdx @@ -98,7 +98,7 @@ async def play(ctx, search: str): return await ctx.respond("No song found.") # we return an error message await vc.play(song) # Else, we play it - await ctx.respond(f"Now playing: `{vc.source.title}`") # and return a success message + await ctx.respond(f"Now playing: `{song.title}`") # and return a success message ```