typo in playerSettings.yaml

This commit is contained in:
Fabian Dill 2021-07-08 00:02:17 +02:00
parent a4dcda16c1
commit f44f015cb9
2 changed files with 3 additions and 1 deletions

View File

@ -72,7 +72,7 @@ Factorio:
chaos: 0 # 25% to 400% of original time chaos: 0 # 25% to 400% of original time
recipe_ingredients: recipe_ingredients:
rocket: 1 # only randomize rocket part recipe 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: max_science_pack:
automation_science_pack: 0 automation_science_pack: 0
logistic_science_pack: 0 logistic_science_pack: 0

View File

@ -84,10 +84,12 @@ class Progressive(Choice):
def want_progressives(self, random): def want_progressives(self, random):
return random.choice([True, False]) if self.value == self.option_random else int(self.value) return random.choice([True, False]) if self.value == self.option_random else int(self.value)
class RecipeIngredients(Choice): class RecipeIngredients(Choice):
option_rocket = 0 option_rocket = 0
option_science_pack = 1 option_science_pack = 1
class FactorioStartItems(OptionDict): class FactorioStartItems(OptionDict):
default = {"burner-mining-drill": 19, "stone-furnace": 19} default = {"burner-mining-drill": 19, "stone-furnace": 19}