From e54d13be375043b689fb36e588183bdc473120ce Mon Sep 17 00:00:00 2001 From: derrod Date: Mon, 4 May 2020 19:50:56 +0200 Subject: [PATCH] [core] Add warning for EQU8 anti-cheat --- legendary/core.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/legendary/core.py b/legendary/core.py index 8e43b6c..6a208aa 100644 --- a/legendary/core.py +++ b/legendary/core.py @@ -480,8 +480,10 @@ class LegendaryCore: results.warnings.add('(Linux) This game uses EasyAntiCheat and may not run on linux') elif 'beclient' in flower: results.warnings.add('(Linux) This game uses BattlEye and may not run on linux') + elif 'equ8.dll' in flower: + results.warnings.add('(Linux) This game is using EQU8 anticheat and may not run on linux') elif flower == 'fna.dll' or flower == 'xna.dll': - results.warnings.add('(Linux) This game is using XNA/FNA and may not run through WINE') + results.warnings.add('(Linux) This game is using XNA/FNA and may not run in WINE') if install.requires_ot: results.warnings.add('This game requires an ownership verification token and likely uses Denuvo DRM.')