From caa8d478f52c2dbcfc883a29a0e34c65dad79418 Mon Sep 17 00:00:00 2001 From: black-sliver <59490463+black-sliver@users.noreply.github.com> Date: Mon, 24 Jul 2023 00:09:47 +0200 Subject: [PATCH] Factorio: update min_client_version (#2018) Ensure that people don't use an old client that is known to be incompatible. --- worlds/factorio/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/factorio/__init__.py b/worlds/factorio/__init__.py index 515776ee..8308bb2d 100644 --- a/worlds/factorio/__init__.py +++ b/worlds/factorio/__init__.py @@ -96,7 +96,7 @@ class Factorio(World): "Progressive": set(progressive_tech_table.keys()), } data_version = 8 - required_client_version = (0, 4, 0) + required_client_version = (0, 4, 2) ordered_science_packs: typing.List[str] = MaxSciencePack.get_ordered_science_packs() tech_tree_layout_prerequisites: typing.Dict[FactorioScienceLocation, typing.Set[FactorioScienceLocation]]