are you fucking kidding me
This commit is contained in:
parent
d0a149793f
commit
e138091fcf
|
|
@ -67,6 +67,11 @@ class Player(VoiceProtocol):
|
|||
"""Property which returns whether or not the player is actively playing a track."""
|
||||
return self._is_connected and self.current is not None
|
||||
|
||||
@property
|
||||
def is_connected(self) -> bool:
|
||||
"""Property which returns whether or not the player is connected"""
|
||||
return self._is_connected
|
||||
|
||||
@property
|
||||
def is_paused(self) -> bool:
|
||||
"""Property which returns whether or not the player has a track which is paused or not."""
|
||||
|
|
|
|||
Loading…
Reference in New Issue