From 60a192b1b6e4d9cc4042e9c9e5431014b813b4e7 Mon Sep 17 00:00:00 2001 From: Duck <31627079+duckboycool@users.noreply.github.com> Date: Thu, 27 Nov 2025 11:51:23 -0700 Subject: [PATCH] ALttP/Factorio: Add spaces in concatenated strings (#5564) * Add them * Revert "Add them" This reverts commit 82be86191faa70d1ce097c61fc8556e03da1a72e. * Re-add ALttP/Factorio --- worlds/alttp/Rom.py | 2 +- worlds/factorio/Client.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/worlds/alttp/Rom.py b/worlds/alttp/Rom.py index 2e0b81a4bd..2f62b37682 100644 --- a/worlds/alttp/Rom.py +++ b/worlds/alttp/Rom.py @@ -183,7 +183,7 @@ def check_enemizer(enemizercli): if getattr(check_enemizer, "done", None): return if not os.path.exists(enemizercli) and not os.path.exists(enemizercli + ".exe"): - raise Exception(f"Enemizer not found at {enemizercli}, please install it." + raise Exception(f"Enemizer not found at {enemizercli}, please install it. " f"Such as https://github.com/Ijwu/Enemizer/releases") with check_lock: diff --git a/worlds/factorio/Client.py b/worlds/factorio/Client.py index 422f719b65..beec7c434e 100755 --- a/worlds/factorio/Client.py +++ b/worlds/factorio/Client.py @@ -584,7 +584,7 @@ def launch(*new_args: str): # args handling parser = get_base_parser(description="Optional arguments to Factorio Client follow. " - "Remaining arguments get passed into bound Factorio instance." + "Remaining arguments get passed into bound Factorio instance. " "Refer to Factorio --help for those.") parser.add_argument('--rcon-port', default='24242', type=int, help='Port to use to communicate with Factorio') parser.add_argument('--rcon-password', help='Password to authenticate with RCON.')