Skip to content

Commit

Permalink
[Legendary] fix being able to update while offline
Browse files Browse the repository at this point in the history
  • Loading branch information
suchmememanyskill committed Jul 1, 2022
1 parent edae19e commit 9764185
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LegendaryIntegration/LegendaryGameSource.cs
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public List<Command> GetGameCommands(IGame game)
}
else
{
if (legendaryGame.UpdateAvailable)
if (legendaryGame.UpdateAvailable && !auth!.OfflineLogin)
{
commands.Add(new("Update", () => Download(legendaryGame)));
}
Expand Down

0 comments on commit 9764185

Please sign in to comment.