Changed advancement_goal to a Range option

This commit is contained in:
espeon65536
2021-06-08 08:58:16 -05:00
parent 622f8f8158
commit 6e33181f05
4 changed files with 11 additions and 18 deletions

View File

@@ -386,11 +386,10 @@ factorio_options: typing.Dict[str, type(Option)] = {"max_science_pack": MaxScien
"recipe_time": RecipeTime}
class AdvancementGoal(Choice):
option_few = 0
option_normal = 1
option_many = 2
default = 1
class AdvancementGoal(Range):
range_start = 0
range_end = 87
default = 30
class CombatDifficulty(Choice):