Fix var loading again

Update Deprecated Args
Parse CLI
Parse Settings
Fix defaults
Fix priority
Add Enemizer error
Fix Custom Item Array again
Make output more verbose
Fix double-negative options
This commit is contained in:
Mike A. Trethewey
2020-03-22 02:53:40 -07:00
parent f28b1d15c6
commit 8513b7f270
15 changed files with 185 additions and 85 deletions

View File

@@ -107,10 +107,10 @@
},
"dungeon_counters": {
"choices": [
"default",
"off",
"on",
"pickup",
"default"
"pickup"
]
},
"crystals_ganon": {
@@ -198,15 +198,6 @@
"action": "store_true",
"type": "bool"
},
"shuffleganon": {
"action": "store_true",
"type": "bool"
},
"no-shuffleganon": {
"action": "store_false",
"dest": "shuffleganon",
"help": "suppress"
},
"heartbeep": {
"choices": [
"normal",
@@ -240,20 +231,39 @@
]
},
"sprite": {},
"create_rom": {
"action": "store_false",
"type": "bool"
},
"suppress_rom": {
"action": "store_true",
"dest": "create_rom",
"help": "suppress"
},
"shuffleganon": {
"action": "store_false",
"type": "bool"
},
"no_shuffleganon": {
"action": "store_true",
"dest": "shuffleganon",
"help": "suppress"
},
"calc_playthrough": {
"action": "store_false",
"type": "bool"
},
"skip_playthrough": {
"action": "store_true",
"dest": "calc_playthrough",
"help": "suppress"
},
"gui": {
"action": "store_true"
},
"jsonout": {
"action": "store_true"
},
"skip_playthrough": {
"action": "store_true",
"type": "bool"
},
"enemizercli": {
"setting": "enemizercli"
},