From a5a0c94a2c227fb09f8ba8c76767b9318fe225f8 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Tue, 15 Mar 2022 14:01:15 +0100 Subject: [PATCH] Factorio: increase cost of Energy Bridge --- 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 1ed69b2a..98f5c1c8 100644 --- a/worlds/factorio/__init__.py +++ b/worlds/factorio/__init__.py @@ -347,7 +347,7 @@ class Factorio(World): {bridge: 1}, 10), sorted(science_pack_pools[self.world.max_science_pack[self.player].get_ordered_science_packs()[0]])) for ingredient_name in new_recipe.ingredients: - new_recipe.ingredients[ingredient_name] = self.world.random.randint(3, 10) + new_recipe.ingredients[ingredient_name] = self.world.random.randint(10, 100) self.custom_recipes[bridge] = new_recipe needed_recipes = self.world.max_science_pack[self.player].get_allowed_packs() | {"rocket-part"}