From 744b12345a4beedd951b3d970e314748af986ca4 Mon Sep 17 00:00:00 2001 From: CaitSith2 Date: Thu, 25 Nov 2021 10:17:23 -0800 Subject: [PATCH] hard-code only steam. Water already appears at logistic-science pack, and crude-oil at chemical. --- worlds/factorio/Technologies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/factorio/Technologies.py b/worlds/factorio/Technologies.py index 742a3684..ef5919da 100644 --- a/worlds/factorio/Technologies.py +++ b/worlds/factorio/Technologies.py @@ -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