From de2a3bf5c1c7c18eb9ecba190e81f861199d6be2 Mon Sep 17 00:00:00 2001 From: aerinon Date: Fri, 20 Mar 2020 12:24:36 -0600 Subject: [PATCH] Version change and note for later --- DungeonGenerator.py | 2 +- Main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DungeonGenerator.py b/DungeonGenerator.py index 2a1ee11c..a57e9f85 100644 --- a/DungeonGenerator.py +++ b/DungeonGenerator.py @@ -734,7 +734,7 @@ class ExplorationState(object): 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']: 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) if not bk_Flag: self.bk_found.add(location) diff --git a/Main.py b/Main.py index 74920824..8c562078 100644 --- a/Main.py +++ b/Main.py @@ -24,7 +24,7 @@ from Fill import distribute_items_cutoff, distribute_items_staleness, distribute from ItemList import generate_itempool, difficulties, fill_prizes from Utils import output_path, parse_player_names -__version__ = '0.0.18.6d' +__version__ = '0.0.19dev' def main(args, seed=None):