diff --git a/neon_nodes/voice_client.py b/neon_nodes/voice_client.py index 8297517..017944a 100644 --- a/neon_nodes/voice_client.py +++ b/neon_nodes/voice_client.py @@ -173,7 +173,7 @@ def watchdog(self): if not self._voice_thread.is_alive(): self.error_hook("11") raise RuntimeError("Voice Thread not alive") - if self._voice_loop._is_running: + if not self._voice_loop._is_running: self.error_hook("12") raise RuntimeError("Voice Loop not running") except KeyboardInterrupt: