Make descriptions (truly) match the README

This commit is contained in:
Kazevic 2022-12-28 03:15:03 +00:00 committed by GitHub
parent 760578b4bf
commit 70af1c24f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,8 +16,8 @@ if __name__ == "__main__":
parser = argparse.ArgumentParser(description="Patch `eldenring.exe` and run it without EAC.")
parser.add_argument("-r", "--rate", type=int, default=60, help="Set a custom frame rate limit (default: 60).")
parser.add_argument("-x", "--executable", action='store', type=str, default="eldenring.exe", help="The executable to run, relative to the game's folder.")
parser.add_argument("--with-eac", action='store_true', help="Run game with EAC (use it at own your risk).")
parser.add_argument("-x", "--executable", action='store', type=str, default="eldenring.exe", help="The executable to run, relative to the game's folder. Mutually exclusive with --with-eac`.")
parser.add_argument("--with-eac", action='store_true', help="Run game with EAC (use it at own your risk). Mutually exclusive with `--executable`.")
parser.add_argument("--disable-rune-loss", action='store_true', help="Disable rune loss upon death.")
parser.add_argument("--all", action='store_true', help="Enable all options but `--rate` and gameplay changes like `--disable-rune-loss`.")
parser.add_argument("-u", "--ultrawide", action='store_true', help="Remove black bars on non-16:9 aspect ratios.")