diff --git a/discord/voice_client.py b/discord/voice_client.py index 5b129e702..fbe3d4926 100644 --- a/discord/voice_client.py +++ b/discord/voice_client.py @@ -124,6 +124,8 @@ class ProcessPlayer(StreamPlayer): def stop(self): self.process.kill() + if self.process.poll() is None: + self.process.communicate(timeout=0.100) super().stop() class VoiceClient: