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)