From 247071b718f9b6d1e834cd32f238d6ceee907b77 Mon Sep 17 00:00:00 2001 From: aerinon Date: Wed, 5 May 2021 08:42:40 -0600 Subject: [PATCH 1/4] Fix standard_restricted --- BaseClasses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseClasses.py b/BaseClasses.py index 7e18ba60..7f40e090 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -1228,7 +1228,7 @@ class Door(object): self.passage = True self.dungeonLink = None self.bk_shuffle_req = False - self.standard_restrict = False # flag if portal is not allowed in HC in standard + self.standard_restricted = False # flag if portal is not allowed in HC in standard # self.incognitoPos = -1 # self.sectorLink = False From 07308b71928d7ce0c4600f6500d9bbd88eeb7440 Mon Sep 17 00:00:00 2001 From: aerinon Date: Wed, 5 May 2021 14:22:45 -0600 Subject: [PATCH 2/4] Fix standard_stair_check --- DungeonGenerator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DungeonGenerator.py b/DungeonGenerator.py index 37f77e7d..9bb73802 100644 --- a/DungeonGenerator.py +++ b/DungeonGenerator.py @@ -1266,7 +1266,7 @@ def create_dungeon_builders(all_sectors, connections_tuple, world, player, reverse_d_map[sector] = key if world.mode[player] == 'standard': current_dungeon = dungeon_map['Hyrule Castle'] - standard_stair_check(world, dungeon_map, current_dungeon, candidate_sectors, global_pole) + standard_stair_check(dungeon_map, current_dungeon, candidate_sectors, global_pole) complete_dungeons = {x: y for x, y in dungeon_map.items() if sum(len(sector.outstanding_doors) for sector in y.sectors) <= 0} [dungeon_map.pop(key) for key in complete_dungeons.keys()] From eed80b4afe90fa73b666f4c0f934feb3a83cde0d Mon Sep 17 00:00:00 2001 From: aerinon Date: Wed, 5 May 2021 14:24:20 -0600 Subject: [PATCH 3/4] Version bump and fixes --- Main.py | 2 +- RELEASENOTES.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Main.py b/Main.py index d83a7cf5..ee7b2550 100644 --- a/Main.py +++ b/Main.py @@ -26,7 +26,7 @@ from Fill import sell_potions, sell_keys, balance_multiworld_progression, balanc from ItemList import generate_itempool, difficulties, fill_prizes, customize_shops from Utils import output_path, parse_player_names -__version__ = '0.3.1.8-u' +__version__ = '0.3.1.10-u' class EnemizerError(RuntimeError): diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 2bc21111..cec7a59c 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -150,6 +150,8 @@ New item counter modified to show total # Bug Fixes and Notes. +* 0.3.1.10u + * Standard generation fixes * 0.3.1.9-u * Generation improvements for standard * Removed link sprite from repo From d36cf2f732f0b0bfe57f9377c6191ec374b94b04 Mon Sep 17 00:00:00 2001 From: aerinon Date: Wed, 5 May 2021 16:54:20 -0600 Subject: [PATCH 4/4] Version bump slight change --- Main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Main.py b/Main.py index ee7b2550..59b3355b 100644 --- a/Main.py +++ b/Main.py @@ -26,7 +26,7 @@ from Fill import sell_potions, sell_keys, balance_multiworld_progression, balanc from ItemList import generate_itempool, difficulties, fill_prizes, customize_shops from Utils import output_path, parse_player_names -__version__ = '0.3.1.10-u' +__version__ = '0.3.1.10u' class EnemizerError(RuntimeError):