From 6e916ebd456e3c23f6204f6175e94d225717b48d Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sat, 29 May 2021 06:23:35 +0200 Subject: [PATCH] bake correct minimum version for Factorio into multidata --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index f3d8e429..41cdd7b3 100644 --- a/Main.py +++ b/Main.py @@ -503,7 +503,7 @@ def main(args, seed=None): games = {} for slot in world.player_ids: if world.game[slot] == "Factorio": - client_versions[slot] = (1, 1, 2) + client_versions[slot] = (0, 1, 2) else: client_versions[slot] = (0, 0, 3) games[slot] = world.game[slot]