From ec97cef2645e77197c969fef558ea68c300d4e4d Mon Sep 17 00:00:00 2001 From: derrod Date: Sat, 25 Apr 2020 12:20:55 +0200 Subject: [PATCH] [core] Add additional warning for Ownership Token requirement --- legendary/core.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/legendary/core.py b/legendary/core.py index f6b591b..9c86194 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -427,6 +427,9 @@ class LegendaryCore: results.warnings.append('(Linux) The game uses EasyAntiCheat and may not run on linux') break + if install.requires_ot: + results.warnings.append('This game requires an ownership verification token and likely uses Denuvo DRM.') + # 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 _, _, free = shutil.disk_usage(install.install_path)