From 573478ae71c785416d08f8852969457a8d197c3c Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Sun, 21 Jun 2020 03:52:19 +0200 Subject: [PATCH] set default ER to vanilla People downloaded ER for ER, so it made sense to make it non-vanilla. But now people download multiworld for multiworld and full ER is not what is the expected default. --- Gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gui.py b/Gui.py index 6202a469..c9e5addd 100755 --- a/Gui.py +++ b/Gui.py @@ -327,7 +327,7 @@ def guiMain(args=None): shuffleFrame = Frame(drowDownFrame) shuffleVar = StringVar() - shuffleVar.set('full') + shuffleVar.set('vanilla') shuffleOptionMenu = OptionMenu(shuffleFrame, shuffleVar, 'vanilla', 'simple', 'restricted', 'full', 'crossed', 'insanity', 'restricted_legacy', 'full_legacy', 'madness_legacy', 'insanity_legacy', 'dungeonsfull', 'dungeonssimple') shuffleOptionMenu.pack(side=RIGHT) shuffleLabel = Label(shuffleFrame, text='Entrance shuffle algorithm')