diff --git a/Main.py b/Main.py index 6405d32f..cb22a945 100644 --- a/Main.py +++ b/Main.py @@ -15,7 +15,7 @@ from Fill import distribute_items_cutoff, distribute_items_staleness, distribute from ItemList import generate_itempool, difficulties from Utils import output_path -__version__ = '0.6' +__version__ = '0.6.0' logic_hash = [26, 76, 4, 144, 72, 105, 234, 233, 12, 184, 95, 94, 100, 13, 15, 174, 186, 135, 130, 189, 246, 254, 123, 245, 85, 241, 101, 129, 70, 255, 55, 248, diff --git a/Rom.py b/Rom.py index ac3ed04a..ba75d0a9 100644 --- a/Rom.py +++ b/Rom.py @@ -818,7 +818,7 @@ def patch_rom(world, rom, hashtable, beep='normal', color='red', sprite=None): # set rom name # 21 bytes - rom.write_bytes(0x7FC0, bytearray('ER_06_%09d\0' % world.seed, 'utf8') + world.option_identifier.to_bytes(4, 'big')) + rom.write_bytes(0x7FC0, bytearray('ER_060_%09d\0' % world.seed, 'utf8') + world.option_identifier.to_bytes(4, 'big')) # store hash table for main menu hash rom.write_bytes(0x187F00, hashtable)