Skip to content

Commit 94b2985

Browse files
Fixed missing server arguments for spinup
1 parent ff58fde commit 94b2985

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

worlds/factorio_bobs/Client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ async def factorio_spinup_server(ctx: FactorioContext) -> bool:
456456
if not os.path.exists(savegame_name):
457457
logger.info(f"Creating savegame {savegame_name}")
458458
subprocess.run((
459-
executable, "--create", savegame_name
459+
executable, "--create", savegame_name, *ctx.server_args
460460
))
461461
if not os.path.exists(savegame_name):
462462
raise FileNotFoundError(f"Failed to create savegame {savegame_name}")

0 commit comments

Comments
 (0)