diff --git a/playerSettings.yaml b/playerSettings.yaml index 479ea5a915..7e8b60f6ba 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 6c2f3d9c70..7840145d5b 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}