Skip to content

Commit

Permalink
[Fix] Set 8D back to normalizer when off
Browse files Browse the repository at this point in the history
  • Loading branch information
naseif committed Oct 5, 2021
1 parent f1acb6b commit b262772
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 @@ -48,7 +48,7 @@ module.exports = {
break;
case "off":
try {
await queue.setFilters({});
await queue.setFilters({normalizer: true});
await message.channel.send({
embeds: [embedMessage("#9dcc37", `✅ 8D Filter has been disabled`)],
});
Expand All @@ -58,6 +58,7 @@ module.exports = {
embeds: [embedMessage("#9dcc37", `Could not disable the filter`)],
});
}
break;
}
},
data: new SlashCommandBuilder()
Expand Down

0 comments on commit b262772

Please sign in to comment.