Make Shuffle Ganon the Default

This commit is contained in:
Kevin Cathcart
2018-01-27 17:11:53 -05:00
parent e19c0ada70
commit 570ee24fc0
3 changed files with 10 additions and 7 deletions

1
Gui.py
View File

@@ -69,6 +69,7 @@ def guiMain(args=None):
disableMusicVar = IntVar()
disableMusicCheckbutton = Checkbutton(checkBoxFrame, text="Disable game music", variable=disableMusicVar)
shuffleGanonVar = IntVar()
shuffleGanonVar.set(1) #set default
shuffleGanonCheckbutton = Checkbutton(checkBoxFrame, text="Include Ganon's Tower and Pyramid Hole in shuffle pool", variable=shuffleGanonVar)
customVar = IntVar()
customCheckbutton = Checkbutton(checkBoxFrame, text="Use custom item pool", variable=customVar)