mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Added Extended msu option to gui (#95)
* Added Extended msu option to gui
This commit is contained in:
5
Gui.py
5
Gui.py
@@ -88,6 +88,9 @@ def guiMain(args=None):
|
||||
balancingVar = IntVar()
|
||||
balancingVar.set(1) #set default
|
||||
balancingCheckbutton = Checkbutton(checkBoxFrame, text="Multiworld Progression Balancing", variable=balancingVar)
|
||||
extendedmsuVar = IntVar()
|
||||
extendedmsuVar.set(0) #set default
|
||||
extendedmsuCheckbutton = Checkbutton(checkBoxFrame, text="Extended MSU", variable=extendedmsuVar)
|
||||
createSpoilerCheckbutton.pack(expand=True, anchor=W)
|
||||
suppressRomCheckbutton.pack(expand=True, anchor=W)
|
||||
openpyramidCheckbutton.pack(expand=True, anchor=W)
|
||||
@@ -102,6 +105,7 @@ def guiMain(args=None):
|
||||
hintsCheckbutton.pack(expand=True, anchor=W)
|
||||
customCheckbutton.pack(expand=True, anchor=W)
|
||||
balancingCheckbutton.pack(expand=True, anchor=W)
|
||||
extendedmsuCheckbutton.pack(expand=True, anchor=W)
|
||||
|
||||
romOptionsFrame = LabelFrame(rightHalfFrame, text="Rom options")
|
||||
romOptionsFrame.columnconfigure(0, weight=1)
|
||||
@@ -438,6 +442,7 @@ def guiMain(args=None):
|
||||
guiargs.item_functionality = itemfunctionVar.get()
|
||||
guiargs.timer = timerVar.get()
|
||||
guiargs.skip_progression_balancing = not balancingVar.get()
|
||||
guiargs.extendedmsu = extendedmsuVar.get()
|
||||
if guiargs.timer == "none":
|
||||
guiargs.timer = False
|
||||
guiargs.dungeon_counters = dungeonCounterVar.get()
|
||||
|
Reference in New Issue
Block a user