From d6186cb20d32fd854a885142709b40ca2ab44535 Mon Sep 17 00:00:00 2001 From: cloudwithax Date: Mon, 13 Dec 2021 17:48:29 -0500 Subject: [PATCH] Forgot to call start_nodes in advanced example --- examples/advanced.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/advanced.py b/examples/advanced.py index c52974a..58265c5 100644 --- a/examples/advanced.py +++ b/examples/advanced.py @@ -85,6 +85,9 @@ class Music(commands.Cog): # In order to initialize a node, or really do anything in this library, # you need to make a node pool self.pomice = pomice.NodePool() + + # Start the node + bot.loop.create_task(self.start_nodes) async def start_nodes(self): # You can pass in Spotify credentials to enable Spotify querying.