From 8f32c3017756d91c374fcbe5c5df62ebba212b2e Mon Sep 17 00:00:00 2001 From: "Mike A. Trethewey" Date: Sat, 15 Feb 2020 02:06:14 -0800 Subject: [PATCH] Pythonify values --- CLI.py | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/CLI.py b/CLI.py index 1098b6ae..75250404 100644 --- a/CLI.py +++ b/CLI.py @@ -323,8 +323,8 @@ def get_settings(): settings = { "multi": 1, "names": "", - "seed": null, - "count": null, + "seed": None, + "count": None, "mode": "open", "logic": "noglitches", "goal": "ganon", @@ -343,28 +343,28 @@ def get_settings(): "heartbeep": "normal", "heartcolor": "red", "fastmenu": "normal", - "create_spoiler": false, - "skip_playthrough": true, - "suppress_rom": false, - "openpyramid": false, - "mapshuffle": false, - "compassshuffle": false, - "keyshuffle": false, - "bigkeyshuffle": false, - "retro": false, - "quickswap": false, - "disablemusic": false, + "create_spoiler": False, + "skip_playthrough": True, + "suppress_rom": False, + "openpyramid": False, + "mapshuffle": False, + "compassshuffle": False, + "keyshuffle": False, + "bigkeyshuffle": False, + "retro": False, + "quickswap": False, + "disablemusic": False, "ow_palettes": "default", "uw_palettes": "default", - "shuffleganon": true, - "hints": false, + "shuffleganon": True, + "hints": False, "enemizercli": os.path.join(".","EnemizerCLI","EnemizerCLI.Core"), "shufflebosses": "none", "shuffleenemies": "none", "enemy_health": "default", "enemy_damage": "default", - "shufflepots": false, - "custom": false, + "shufflepots": False, + "custom": False, "customitemarray": [ 0, 0, @@ -439,8 +439,8 @@ def get_settings(): 0 ], "rom": os.path.join(".","Zelda no Densetsu - Kamigami no Triforce (Japan).sfc"), - "sprite": null, - "randomSprite": false, + "sprite": None, + "randomSprite": False, "outputpath": os.path.join(".") } if sys.platform.lower().find("windows"):