Version number to satisfy msi requirement
Apparently we are required to always have three distinct numeric fields. Hilarious.
This commit is contained in:
parent
52300e8c85
commit
c5b62c9b93
2
Main.py
2
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,
|
||||
|
|
2
Rom.py
2
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)
|
||||
|
|
Loading…
Reference in New Issue