ALttP/Factorio: Add spaces in concatenated strings (#5564)

* Add them

* Revert "Add them"

This reverts commit 82be86191f.

* Re-add ALttP/Factorio
This commit is contained in:
Duck
2025-11-27 11:51:23 -07:00
committed by GitHub
parent 3b721e0365
commit 60a192b1b6
2 changed files with 2 additions and 2 deletions

View File

@@ -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:

View File

@@ -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.')