Change Spoiler default to True
Set base rom to actually do the thing
This commit is contained in:
Mike A. Trethewey
2021-02-26 02:13:11 -08:00
parent ff763c4542
commit f7df6c0e69
5 changed files with 15 additions and 13 deletions

View File

@@ -334,15 +334,15 @@ def update_deprecated_args(args):
else:
args.no_hints = args.hints not in truthy # dest = !src
# Spoiler defaults to FALSE
# Don't do: No
# Do: Yes
if "create_spoiler" in argVars:
args.suppress_spoiler = not args.create_spoiler in truthy
# Spoiler defaults to TRUE
# Don't do: Yes
# Do: No
if "suppress_spoiler" in argVars:
args.create_spoiler = not args.suppress_spoiler in truthy
# Don't do: No
# Do: Yes
if "create_spoiler" in argVars:
args.suppress_spoiler = not args.create_spoiler in truthy
# ROM defaults to TRUE
# Don't do: Yes