Skip to content

Commit

Permalink
[Fix] fixed 8D command causing the music to stop after filter disable
Browse files Browse the repository at this point in the history
  • Loading branch information
naseif committed Nov 17, 2021
1 parent adc5299 commit c3da4b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion commands/Music/8D.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ module.exports = {
try {
await queue.setFilters({
"8D": true,
normalizer2: true,
});
await message.channel.send({
embeds: [embedMessage("#9dcc37", `✅ 8D Filter has been enabled`)],
Expand All @@ -48,7 +49,7 @@ module.exports = {
break;
case "off":
try {
await queue.setFilters({ normalizer: true });
await queue.setFilters({ normalizer2: true, "8D": false });
await message.channel.send({
embeds: [embedMessage("#9dcc37", `✅ 8D Filter has been disabled`)],
});
Expand Down

0 comments on commit c3da4b0

Please sign in to comment.