mirror of
https://github.com/danbulant/discord.js
synced 2026-07-06 19:50:55 +00:00
Webpack build: 3109accf87
This commit is contained in:
parent
3a5d795a59
commit
6479565491
2 changed files with 8 additions and 6 deletions
|
|
@ -21857,11 +21857,13 @@ class VoiceBroadcast extends EventEmitter {
|
||||||
buffer = this.applyVolume(buffer);
|
buffer = this.applyVolume(buffer);
|
||||||
|
|
||||||
for (const x of this.dispatchers.entries()) {
|
for (const x of this.dispatchers.entries()) {
|
||||||
const [volume, container] = x;
|
setImmediate(() => {
|
||||||
const opusPacket = this.opusEncoder.encode(this.applyVolume(buffer, volume));
|
const [volume, container] = x;
|
||||||
for (const dispatcher of container.values()) {
|
const opusPacket = this.opusEncoder.encode(this.applyVolume(buffer, volume));
|
||||||
setImmediate(() => dispatcher.process(buffer, true, opusPacket));
|
for (const dispatcher of container.values()) {
|
||||||
}
|
setImmediate(() => dispatcher.process(buffer, true, opusPacket));
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
2
discord.indev-prism.min.js
vendored
2
discord.indev-prism.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue