From 19c06301e7472a516b2036e963e3f698ef5c8084 Mon Sep 17 00:00:00 2001 From: cloudwithax Date: Fri, 10 Mar 2023 23:51:11 -0500 Subject: [PATCH] update docs to reflect new changes --- docs/hdi/pool.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/hdi/pool.md b/docs/hdi/pool.md index 4245e47..7618f13 100644 --- a/docs/hdi/pool.md +++ b/docs/hdi/pool.md @@ -61,6 +61,11 @@ After you have initialized your function, we need to fill in the proper paramete - `bool` - Set this value to `True` if you want to use Apple Music functionality within Pomice. Apple Music will **not work** if you don't enable this. +* - `fallback` + - `bool` + - Set this value to `True` if you want Pomice to automatically switch all players to another available node if one disconnects. + You must have two or more nodes to be able to do this. + ::: @@ -78,7 +83,8 @@ await NodePool.create_node( password="", spotify_client_id="", spotify_client_secret="" - apple_music=True + apple_music=, + fallback= ) ```