queue play command

This commit is contained in:
jude
2022-02-13 16:12:42 +00:00
parent 821f283969
commit febeeefb01
6 changed files with 187 additions and 5 deletions

View File

@ -102,14 +102,15 @@ SELECT name, id, public, server_id, uploader_id
let (handler, _) = join_channel(&ctx, guild, user_channel).await;
let _ = play_audio(
play_audio(
&mut sound,
volume,
&mut handler.lock().await,
&data.database,
false,
)
.await;
.await
.unwrap();
}
}
}