hard-code only steam. Water already appears at logistic-science pack, and crude-oil at chemical.

This commit is contained in:
CaitSith2 2021-11-25 10:17:23 -08:00
parent 2770014988
commit 744b12345a
1 changed files with 1 additions and 1 deletions

View File

@ -485,7 +485,7 @@ def get_science_pack_pools() -> Dict[str, Set[str]]:
current |= {"iron-ore", "copper-ore", "coal", "stone"}
current -= liquids # Can't hand craft automation science if liquids end up in its recipe, making the seed impossible.
elif science_pack == "logistic-science-pack":
current |= {"water", "steam", "crude-oil"}
current |= {"steam"}
current -= already_taken
already_taken |= current
current_difficulty *= 2