From 70af1c24f21fbde29ba09e9bd92cd21a20d03d1b Mon Sep 17 00:00:00 2001 From: Kazevic <104698169+Kazevic@users.noreply.github.com> Date: Wed, 28 Dec 2022 03:15:03 +0000 Subject: [PATCH] Make descriptions (truly) match the README --- er-patcher | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.")