streamify-audio 2.2.11 → 2.2.12
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.
- package/package.json +1 -1
- package/src/discord/Player.js +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "streamify-audio",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.12",
|
|
4
4
|
"description": "Dual-mode audio library: HTTP streaming proxy + Discord player (Lavalink alternative). Supports YouTube, Spotify, SoundCloud with audio filters.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
package/src/discord/Player.js
CHANGED
|
@@ -167,7 +167,8 @@ class Player extends EventEmitter {
|
|
|
167
167
|
guildId: this.guildId,
|
|
168
168
|
adapterCreator: guild.voiceAdapterCreator,
|
|
169
169
|
selfDeaf: true,
|
|
170
|
-
selfMute: false
|
|
170
|
+
selfMute: false,
|
|
171
|
+
group: this.manager.client.user?.id || 'default'
|
|
171
172
|
});
|
|
172
173
|
|
|
173
174
|
this.audioPlayer = createAudioPlayer({
|