mirror of
https://github.com/danbulant/discord.js
synced 2026-06-20 23:21:04 +00:00
voice fixes
This commit is contained in:
parent
0e6ff52c61
commit
4d6adfd289
2 changed files with 0 additions and 2 deletions
|
|
@ -94,7 +94,6 @@ var VoiceConnection = (function (_EventEmitter) {
|
|||
if (this.streamProc) {
|
||||
this.streamProc.stdin.pause();
|
||||
this.streamProc.kill("SIGINT");
|
||||
this.streamProc.kill();
|
||||
}
|
||||
if (this.instream) {
|
||||
//not all streams implement these...
|
||||
|
|
|
|||
|
|
@ -65,7 +65,6 @@ export default class VoiceConnection extends EventEmitter {
|
|||
if (this.streamProc) {
|
||||
this.streamProc.stdin.pause();
|
||||
this.streamProc.kill("SIGINT");
|
||||
this.streamProc.kill();
|
||||
}
|
||||
if(this.instream){
|
||||
//not all streams implement these...
|
||||
|
|
|
|||
Loading…
Reference in a new issue