Factorio: update min_client_version (#2018)

Ensure that people don't use an old client that is known to be incompatible.
This commit is contained in:
black-sliver 2023-07-24 00:09:47 +02:00 committed by GitHub
parent 7279de0605
commit caa8d478f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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