Make all final roms 4 MiB to hide enemizer

This commit is contained in:
Fabian Dill
2020-08-16 11:13:50 +02:00
parent 3080925950
commit b0284c9fe2
2 changed files with 11 additions and 2 deletions

View File

@@ -235,7 +235,7 @@ def main(args, seed=None):
"-nohints" if not world.hints[
player] else "")) if not args.outputname else ''
rompath = output_path(f'{outfilebase}{outfilepname}{outfilesuffix}.sfc')
rom.write_to_file(rompath)
rom.write_to_file(rompath, hide_enemizer=True)
if args.create_diff:
Patch.create_patch_file(rompath)
return player, team, bytes(rom.name).decode()