diff options
Diffstat (limited to 'commands/reshuffle.js')
| -rw-r--r-- | commands/reshuffle.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/reshuffle.js b/commands/reshuffle.js index f60bb1c..e1d37d0 100644 --- a/commands/reshuffle.js +++ b/commands/reshuffle.js @@ -39,6 +39,6 @@ export default { await audioState(2); await shufflePlaylist(bot); } - return (shuffle === true) ? await shuffleDetected(bot) : await interaction.reply({ content: 'Shuffle mode is disabled, enable it in the configuration file to access this command.', ephemeral: true }); + return (shuffle) ? await shuffleDetected(bot) : await interaction.reply({ content: 'Shuffle mode is disabled, enable it in the configuration file to access this command.', ephemeral: true }); } }; |
