diff --git a/er-patcher b/er-patcher index 81a42b3..27ee2c5 100755 --- a/er-patcher +++ b/er-patcher @@ -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.")