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:
parent
7279de0605
commit
caa8d478f5
|
@ -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]]
|
||||
|
|
Loading…
Reference in New Issue