Version number to satisfy msi requirement

Apparently we are required to always have three distinct numeric fields. Hilarious.
This commit is contained in:
AmazingAmpharos 2018-03-03 12:29:52 -06:00 committed by GitHub
parent 52300e8c85
commit c5b62c9b93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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
View File

@ -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)