typo in playerSettings.yaml
This commit is contained in:
parent
a4dcda16c1
commit
f44f015cb9
|
@ -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
|
||||||
|
|
|
@ -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}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue