Skip to content

Commit

Permalink
Detect DRS and Shadow in cheats
Browse files Browse the repository at this point in the history
  • Loading branch information
AnimatedSwine37 authored Dec 2, 2023
1 parent e7a9825 commit 8149b17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generateGamesList.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
text = open(os.path.join(cheatsPath, file), "r").read().lower()
if "fps" in text:
hasFpsCheats = "🏃"
if "res" in text or "rrs" in text:
if "res" in text or "rrs" in text or "drs" in text:
hasResCheats = "🖥️"
if "gfx" in text:
if "gfx" in text or "shadow" in text:
hasGfxCheats = "🌄"

cheats = [file.removesuffix(".txt") for file in cheatFiles]
Expand Down

0 comments on commit 8149b17

Please sign in to comment.