From f44f015cb9295cafd605e1f7c4e432c08bf492f9 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Thu, 8 Jul 2021 00:02:17 +0200 Subject: [PATCH] typo in playerSettings.yaml --- playerSettings.yaml | 2 +- worlds/factorio/Options.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/playerSettings.yaml b/playerSettings.yaml index 479ea5a9..7e8b60f6 100644 --- a/playerSettings.yaml +++ b/playerSettings.yaml @@ -72,7 +72,7 @@ Factorio: chaos: 0 # 25% to 400% of original time recipe_ingredients: rocket: 1 # only randomize rocket part recipe - science_packs: 1 # also randomize science pack ingredients + science_pack: 1 # also randomize science pack ingredients max_science_pack: automation_science_pack: 0 logistic_science_pack: 0 diff --git a/worlds/factorio/Options.py b/worlds/factorio/Options.py index 6c2f3d9c..7840145d 100644 --- a/worlds/factorio/Options.py +++ b/worlds/factorio/Options.py @@ -84,10 +84,12 @@ class Progressive(Choice): def want_progressives(self, random): return random.choice([True, False]) if self.value == self.option_random else int(self.value) + class RecipeIngredients(Choice): option_rocket = 0 option_science_pack = 1 + class FactorioStartItems(OptionDict): default = {"burner-mining-drill": 19, "stone-furnace": 19}