diff --git a/wavelink/player.py b/wavelink/player.py index c7640816..8c1b747a 100644 --- a/wavelink/player.py +++ b/wavelink/player.py @@ -347,7 +347,10 @@ async def connect(self, *, timeout: float, reconnect: bool, **kwargs: Any) -> No limit: int = self.channel.user_limit total: int = len(self.channel.members) - if total >= limit: + if limit == 0: + pass + + elif total >= limit: self._invalidate() msg: str = f'There are currently too many users in this channel. <{total}/{limit}>'