mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 12:11:33 -06:00
Options: sort values when displaying OptionSet (#326)
This commit is contained in:
@@ -381,7 +381,7 @@ class OptionSet(Option, VerifyKeys):
|
||||
return cls.from_text(str(data))
|
||||
|
||||
def get_option_name(self, value):
|
||||
return ", ".join(value)
|
||||
return ", ".join(sorted(value))
|
||||
|
||||
def __contains__(self, item):
|
||||
return item in self.value
|
||||
|
Reference in New Issue
Block a user