Merge pull request #778 from HKGx/patch-1
fix(Player): don't change connection channel when random user joins
This commit is contained in:
commit
73c37711be
2 changed files with 4 additions and 4 deletions
|
@ -76,7 +76,7 @@ class Player extends EventEmitter<PlayerEvents> {
|
||||||
const queue = this.getQueue(oldState.guild.id);
|
const queue = this.getQueue(oldState.guild.id);
|
||||||
if (!queue) return;
|
if (!queue) return;
|
||||||
|
|
||||||
if (oldState.channelId && newState.channelId && oldState.channelId !== newState.channelId) {
|
if (oldState.channelId && newState.channelId && oldState.channelId !== newState.channelId && newState.member.id === newState.guild.me.id) {
|
||||||
if (queue?.connection) queue.connection.channel = newState.channel;
|
if (queue?.connection) queue.connection.channel = newState.channel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4667,9 +4667,9 @@ taffydb@2.6.2:
|
||||||
integrity sha1-fLy2S1oUG2ou/CxdLGe04VCyomg=
|
integrity sha1-fLy2S1oUG2ou/CxdLGe04VCyomg=
|
||||||
|
|
||||||
tar@^6.1.0:
|
tar@^6.1.0:
|
||||||
version "6.1.6"
|
version "6.1.11"
|
||||||
resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.6.tgz#c23d797b0a1efe5d479b1490805c5443f3560c5d"
|
resolved "https://registry.yarnpkg.com/tar/-/tar-6.1.11.tgz#6760a38f003afa1b2ffd0ffe9e9abbd0eab3d621"
|
||||||
integrity sha512-oaWyu5dQbHaYcyZCTfyPpC+VmI62/OM2RTUYavTk1MDr1cwW5Boi3baeYQKiZbY2uSQJGr+iMOzb/JFxLrft+g==
|
integrity sha512-an/KZQzQUkZCkuoAA64hM92X0Urb6VpRhAFllDzz44U2mcD5scmT3zBc4VgVpkugF580+DQn8eAFSyoQt0tznA==
|
||||||
dependencies:
|
dependencies:
|
||||||
chownr "^2.0.0"
|
chownr "^2.0.0"
|
||||||
fs-minipass "^2.0.0"
|
fs-minipass "^2.0.0"
|
||||||
|
|
Loading…
Reference in a new issue