impromptu cli bugfix
This commit is contained in:
parent
02aaeec7fe
commit
e45d3db275
1 changed files with 7 additions and 6 deletions
13
MFOR.py
13
MFOR.py
|
@ -146,12 +146,13 @@ def main():
|
|||
settings.update({"-PALSUITS-": True})
|
||||
if "p" in args.palettes:
|
||||
settings.update({"-PALSPRITES-": True})
|
||||
settings = {key: settings[key] for key in sorted(settings.keys())}
|
||||
start_randomizer(args.file, settings)
|
||||
if len(logic) > 0:
|
||||
print("\nRandom settings:")
|
||||
for item in logic:
|
||||
print(item)
|
||||
|
||||
settings = {key: settings[key] for key in sorted(settings.keys())}
|
||||
start_randomizer(args.file, settings)
|
||||
if len(logic) > 0:
|
||||
print("\nRandom settings:")
|
||||
for item in logic:
|
||||
print(item)
|
||||
|
||||
else:
|
||||
import GUI
|
||||
|
|
Loading…
Reference in a new issue