lavalink-client 2.5.4 → 2.5.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -694,7 +694,7 @@ class FilterManager {
694
694
  }
695
695
  /** Clears the equalizer bands. */
696
696
  async clearEQ() {
697
- return this.setEQ(Array.from({ length: 15 }, () => ({ band: 0, gain: 0 })));
697
+ return this.setEQ(Array.from({ length: 15 }, (_v, i) => ({ band: i, gain: 0 })));
698
698
  }
699
699
  }
700
700
  exports.FilterManager = FilterManager;
@@ -691,6 +691,6 @@ export class FilterManager {
691
691
  }
692
692
  /** Clears the equalizer bands. */
693
693
  async clearEQ() {
694
- return this.setEQ(Array.from({ length: 15 }, () => ({ band: 0, gain: 0 })));
694
+ return this.setEQ(Array.from({ length: 15 }, (_v, i) => ({ band: i, gain: 0 })));
695
695
  }
696
696
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lavalink-client",
3
- "version": "2.5.4",
3
+ "version": "2.5.5",
4
4
  "description": "Easy, flexible and feature-rich lavalink@v4 Client. Both for Beginners and Proficients.",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",