Version change and note for later

This commit is contained in:
aerinon
2020-03-20 12:24:36 -06:00
parent a18f5c4d51
commit de2a3bf5c1
2 changed files with 2 additions and 2 deletions

View File

@@ -734,7 +734,7 @@ class ExplorationState(object):
self.key_locations += 1 self.key_locations += 1
if location.name not in dungeon_events and '- Prize' not in location.name and location.name not in ['Agahnim 1', 'Agahnim 2']: if location.name not in dungeon_events and '- Prize' not in location.name and location.name not in ['Agahnim 1', 'Agahnim 2']:
self.ttl_locations += 1 self.ttl_locations += 1
if location not in self.found_locations: if location not in self.found_locations: # todo: special logic for TT Boss?
self.found_locations.append(location) self.found_locations.append(location)
if not bk_Flag: if not bk_Flag:
self.bk_found.add(location) self.bk_found.add(location)

View File

@@ -24,7 +24,7 @@ from Fill import distribute_items_cutoff, distribute_items_staleness, distribute
from ItemList import generate_itempool, difficulties, fill_prizes from ItemList import generate_itempool, difficulties, fill_prizes
from Utils import output_path, parse_player_names from Utils import output_path, parse_player_names
__version__ = '0.0.18.6d' __version__ = '0.0.19dev'
def main(args, seed=None): def main(args, seed=None):