Make Shuffle Ganon the Default
This commit is contained in:
parent
e19c0ada70
commit
570ee24fc0
|
@ -174,10 +174,12 @@ def start():
|
||||||
ensure all locations are reachable. This only has an effect
|
ensure all locations are reachable. This only has an effect
|
||||||
on the restrictive algorithm currently.
|
on the restrictive algorithm currently.
|
||||||
''', action='store_true')
|
''', action='store_true')
|
||||||
parser.add_argument('--shuffleganon', help='''\
|
# included for backwards compatibility
|
||||||
If set, include the Pyramid Hole and Ganon's Tower in the
|
parser.add_argument('--shuffleganon', help=argparse.SUPPRESS, action='store_true', default=True)
|
||||||
entrance shuffle pool.
|
parser.add_argument('--no-shuffleganon', help='''\
|
||||||
''', action='store_true')
|
If set, the Pyramid Hole and Ganon's Tower are not
|
||||||
|
included entrance shuffle pool.
|
||||||
|
''', action='store_false', dest='shuffleganon')
|
||||||
parser.add_argument('--heartbeep', default='normal', const='normal', nargs='?', choices=['normal', 'half', 'quarter', 'off'],
|
parser.add_argument('--heartbeep', default='normal', const='normal', nargs='?', choices=['normal', 'half', 'quarter', 'off'],
|
||||||
help='''\
|
help='''\
|
||||||
Select the rate at which the heart beep sound is played at
|
Select the rate at which the heart beep sound is played at
|
||||||
|
|
1
Gui.py
1
Gui.py
|
@ -69,6 +69,7 @@ def guiMain(args=None):
|
||||||
disableMusicVar = IntVar()
|
disableMusicVar = IntVar()
|
||||||
disableMusicCheckbutton = Checkbutton(checkBoxFrame, text="Disable game music", variable=disableMusicVar)
|
disableMusicCheckbutton = Checkbutton(checkBoxFrame, text="Disable game music", variable=disableMusicVar)
|
||||||
shuffleGanonVar = IntVar()
|
shuffleGanonVar = IntVar()
|
||||||
|
shuffleGanonVar.set(1) #set default
|
||||||
shuffleGanonCheckbutton = Checkbutton(checkBoxFrame, text="Include Ganon's Tower and Pyramid Hole in shuffle pool", variable=shuffleGanonVar)
|
shuffleGanonCheckbutton = Checkbutton(checkBoxFrame, text="Include Ganon's Tower and Pyramid Hole in shuffle pool", variable=shuffleGanonVar)
|
||||||
customVar = IntVar()
|
customVar = IntVar()
|
||||||
customCheckbutton = Checkbutton(checkBoxFrame, text="Use custom item pool", variable=customVar)
|
customCheckbutton = Checkbutton(checkBoxFrame, text="Use custom item pool", variable=customVar)
|
||||||
|
|
|
@ -83,7 +83,7 @@ Insane 50/50
|
||||||
|
|
||||||
Standard game completion requiring you to collect the 7 crystals and then beat Ganon.
|
Standard game completion requiring you to collect the 7 crystals and then beat Ganon.
|
||||||
|
|
||||||
This is only noticeably different if the --shuffleganon option is enabled.
|
This is only noticeably different if the the Ganon shuffle option is enabled.
|
||||||
|
|
||||||
## Game Difficulty
|
## Game Difficulty
|
||||||
|
|
||||||
|
@ -422,10 +422,10 @@ Use to select a different sprite sheet to use for Link. Path to a binary file of
|
||||||
Enables the "Only Ensure Seed Beatable" option (default: False)
|
Enables the "Only Ensure Seed Beatable" option (default: False)
|
||||||
|
|
||||||
```
|
```
|
||||||
--shuffleganon
|
--no-shuffleganon
|
||||||
```
|
```
|
||||||
|
|
||||||
Enables the "Include Ganon's Tower and Pyramid Hole in Shuffle pool" option. (default: false)
|
Disables the "Include Ganon's Tower and Pyramid Hole in Shuffle pool" option. (default: Enabled)
|
||||||
|
|
||||||
```
|
```
|
||||||
--suppress_rom
|
--suppress_rom
|
||||||
|
|
Loading…
Reference in New Issue