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})
|
settings.update({"-PALSUITS-": True})
|
||||||
if "p" in args.palettes:
|
if "p" in args.palettes:
|
||||||
settings.update({"-PALSPRITES-": True})
|
settings.update({"-PALSPRITES-": True})
|
||||||
settings = {key: settings[key] for key in sorted(settings.keys())}
|
|
||||||
start_randomizer(args.file, settings)
|
settings = {key: settings[key] for key in sorted(settings.keys())}
|
||||||
if len(logic) > 0:
|
start_randomizer(args.file, settings)
|
||||||
print("\nRandom settings:")
|
if len(logic) > 0:
|
||||||
for item in logic:
|
print("\nRandom settings:")
|
||||||
print(item)
|
for item in logic:
|
||||||
|
print(item)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
import GUI
|
import GUI
|
||||||
|
|
Loading…
Reference in a new issue