From 8f23770e43fa3f40c746fbb3992237811bf2e785 Mon Sep 17 00:00:00 2001 From: derrod Date: Sat, 25 Apr 2020 22:54:18 +0200 Subject: [PATCH] [core] Add warning for games that are not marked for offline use --- legendary/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/legendary/core.py b/legendary/core.py index 9c86194..5dc7122 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -429,6 +429,8 @@ class LegendaryCore: if install.requires_ot: results.warnings.append('This game requires an ownership verification token and likely uses Denuvo DRM.') + if not install.can_run_offline: + results.warnings.append('This game is not marked for offline use (may still work).') # check if enough disk space is free (dl size is the approximate amount the installation will grow) min_disk_space = analysis.uncompressed_dl_size + analysis.biggest_file_size