Always display when relevant users are not ready (#607)

This commit is contained in:
Etoh 2023-05-20 15:41:12 +01:00
parent 8772c5ea51
commit e4314b40f5
1 changed files with 1 additions and 1 deletions

View File

@ -1184,7 +1184,7 @@ class SyncplayClient(object):
def checkReadyStates(self): def checkReadyStates(self):
if not self._client: if not self._client:
return return
if self._client.getPlayerPaused() or not self._userlist.currentUser.isReady(): if self._client.getPlayerPaused() or not self._userlist.currentUser.isReady() or not self._userlist.areAllRelevantUsersInRoomReady():
self._warnings["not-all-ready"]["displayedFor"] = 0 self._warnings["not-all-ready"]["displayedFor"] = 0
if self._userlist.areYouAloneInRoom(): if self._userlist.areYouAloneInRoom():
if self._warnings["not-all-ready"]['timer'].running: if self._warnings["not-all-ready"]['timer'].running: