Forgot to call start_nodes in advanced example
This commit is contained in:
parent
14c4a68af8
commit
d6186cb20d
|
|
@ -86,6 +86,9 @@ class Music(commands.Cog):
|
|||
# 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.
|
||||
# If you do not pass in valid Spotify credentials, Spotify querying will not work
|
||||
|
|
|
|||
Loading…
Reference in New Issue