Skip the playthrough when run from the gui, if the spoiler isn't being created.

This commit is contained in:
compiling
2020-01-12 21:20:14 +11:00
parent d35c5f5d68
commit ead7c117a8
2 changed files with 5 additions and 4 deletions

1
Gui.py
View File

@@ -459,6 +459,7 @@ def guiMain(args=None):
guiargs.heartcolor = heartcolorVar.get()
guiargs.fastmenu = fastMenuVar.get()
guiargs.create_spoiler = bool(createSpoilerVar.get())
guiargs.skip_playthrough = not bool(createSpoilerVar.get())
guiargs.suppress_rom = bool(suppressRomVar.get())
guiargs.openpyramid = bool(openpyramidVar.get())
guiargs.mapshuffle = bool(mapshuffleVar.get())