Add support for default export option values

This commit is contained in:
DarkPhoenix
2019-02-12 10:37:51 +03:00
parent 28fc845250
commit 980c84b911
3 changed files with 26 additions and 15 deletions

View File

@@ -48,8 +48,8 @@ class Options(Enum):
EFT_OPTIONS = (
(Options.IMPLANTS.value, 'Implants && Boosters', 'Export implants and boosters'),
(Options.MUTATIONS.value, 'Mutated Attributes', 'Export mutated modules\' stats'),
(Options.IMPLANTS.value, 'Implants && Boosters', 'Export implants and boosters', True),
(Options.MUTATIONS.value, 'Mutated Attributes', 'Export mutated modules\' stats', True),
)

View File

@@ -29,8 +29,8 @@ class Options(Enum):
MULTIBUY_OPTIONS = (
(Options.IMPLANTS.value, 'Implants && Boosters', 'Export implants and boosters'),
(Options.CARGO.value, 'Cargo', 'Export cargo contents'),
(Options.IMPLANTS.value, 'Implants && Boosters', 'Export implants and boosters', False),
(Options.CARGO.value, 'Cargo', 'Export cargo contents', True),
)