From e09d7614635dbfba606e66febc74ad640dc4793b Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 20 Mar 2024 16:24:12 -0400 Subject: [PATCH] Fix --- structures/Dispatcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structures/Dispatcher.js b/structures/Dispatcher.js index bd1da7cc..ea319d3d 100644 --- a/structures/Dispatcher.js +++ b/structures/Dispatcher.js @@ -46,6 +46,6 @@ module.exports = class VoiceDispatcher { } get canPlay() { - return this.player.state === AudioPlayerStatus.Idle; + return this.player.state.status === AudioPlayerStatus.Idle; } };