Default values for quickswap/disablemusic

Possible fix for Aga Kill room for enemizer
Hammer required for TT Big Chest
This commit is contained in:
aerinon
2020-01-29 12:35:59 -07:00
parent c619e3018b
commit 4d717c7e4b
3 changed files with 5 additions and 2 deletions

View File

@@ -218,8 +218,8 @@ def parse_arguments(argv, no_defaults=False):
Select the rate at which the menu opens and closes.
(default: %(default)s)
''')
parser.add_argument('--quickswap', help='Enable quick item swapping with L and R.', action='store_true')
parser.add_argument('--disablemusic', help='Disables game music.', action='store_true')
parser.add_argument('--quickswap', default=defval(False), help='Enable quick item swapping with L and R.', action='store_true')
parser.add_argument('--disablemusic', default=defval(False), help='Disables game music.', action='store_true')
parser.add_argument('--mapshuffle', default=defval(False), help='Maps are no longer restricted to their dungeons, but can be anywhere', action='store_true')
parser.add_argument('--compassshuffle', default=defval(False), help='Compasses are no longer restricted to their dungeons, but can be anywhere', action='store_true')
parser.add_argument('--keyshuffle', default=defval(False), help='Small Keys are no longer restricted to their dungeons, but can be anywhere', action='store_true')