Skip to content

Commit

Permalink
[Enhancement] fixed 8D for interactions as well
Browse files Browse the repository at this point in the history
  • Loading branch information
naseif committed Nov 17, 2021
1 parent bf2643c commit 6eea49d
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 @@ -94,6 +94,7 @@ module.exports = {
try {
await queue.setFilters({
"8D": true,
normalizer2: true,
});
await interaction.followUp({
embeds: [embedMessage("#9dcc37", `✅ 8D Filter has been enabled`)],
Expand All @@ -107,7 +108,7 @@ module.exports = {
break;
case "0":
try {
await queue.setFilters({ "8D": false });
await queue.setFilters({ "8D": false, normalizer2: true });
await interaction.followUp({
embeds: [embedMessage("#9dcc37", `✅ 8D Filter has been disabled`)],
});
Expand Down

0 comments on commit 6eea49d

Please sign in to comment.