Skip to content

Commit

Permalink
[core] Add warning for EQU8 anti-cheat
Browse files Browse the repository at this point in the history
  • Loading branch information
derrod committed May 4, 2020
1 parent 441c619 commit e54d13b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion legendary/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,8 +480,10 @@ def check_installation_conditions(analysis: AnalysisResult, install: InstalledGa
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.')
Expand Down

0 comments on commit e54d13b

Please sign in to comment.