(self, username)
| 1601 | return True |
| 1602 | |
| 1603 | def isUserInYourRoom(self, username): |
| 1604 | for user in self._users.values(): |
| 1605 | if user.username == username and user.room == self.currentUser.room: |
| 1606 | return True |
| 1607 | return False |
| 1608 | |
| 1609 | def canControl(self, username): |
| 1610 | if self.currentUser.username == username and self.currentUser.canControl(): |