1
0
Fork 0
mirror of synced 2024-06-28 11:11:15 +12:00

RareGame: Origin games should be able to launch despite not being installed

This commit is contained in:
loathingKernel 2023-03-07 12:15:13 +02:00
parent 786fa2c59f
commit dea01ae24b
No known key found for this signature in database
GPG key ID: CE0C72D0B53821FD

View file

@ -564,9 +564,9 @@ class RareGame(RareGameSlim):
@property
def can_launch(self) -> bool:
if self.is_idle and self.is_origin:
return True
if self.is_installed:
if self.is_origin:
return True
if (not self.is_idle) or self.needs_verification:
return False
if self.is_foreign and not self.can_run_offline: