Skip to content

Commit

Permalink
Merge pull request #3 from gaithernOrg/dev
Browse files Browse the repository at this point in the history
Update Options.py
  • Loading branch information
gaithern authored Mar 20, 2024
2 parents 17b8d36 + 4900f0a commit 9a70cdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/lol/Options.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Champions(OptionSet):
"""
display_name = "Champions"
valid_keys = [champions[champion_id]["name"] for champion_id in champions]
default = set([champions[champion_id]["name"] for champion_id in champions])
default = sorted(set([champions[champion_id]["name"] for champion_id in champions]))

class RequiredCreepScore(Range):
"""
Expand Down

0 comments on commit 9a70cdc

Please sign in to comment.