Merge remote-tracking branch 'upstream/DoorDevUnstable' into OverworldShuffleDev

This commit is contained in:
codemann8
2021-05-06 04:24:36 -05:00
4 changed files with 5 additions and 3 deletions

View File

@@ -1267,7 +1267,7 @@ class Door(object):
self.passage = True self.passage = True
self.dungeonLink = None self.dungeonLink = None
self.bk_shuffle_req = False 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.incognitoPos = -1
# self.sectorLink = False # self.sectorLink = False

View File

@@ -1266,7 +1266,7 @@ def create_dungeon_builders(all_sectors, connections_tuple, world, player,
reverse_d_map[sector] = key reverse_d_map[sector] = key
if world.mode[player] == 'standard': if world.mode[player] == 'standard':
current_dungeon = dungeon_map['Hyrule Castle'] 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} 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()] [dungeon_map.pop(key) for key in complete_dungeons.keys()]

View File

@@ -28,7 +28,7 @@ from Fill import sell_potions, sell_keys, balance_multiworld_progression, balanc
from ItemList import generate_itempool, difficulties, fill_prizes, customize_shops from ItemList import generate_itempool, difficulties, fill_prizes, customize_shops
from Utils import output_path, parse_player_names from Utils import output_path, parse_player_names
__version__ = '0.3.1.8-u' __version__ = '0.3.1.10u'
class EnemizerError(RuntimeError): class EnemizerError(RuntimeError):

View File

@@ -150,6 +150,8 @@ New item counter modified to show total
# Bug Fixes and Notes. # Bug Fixes and Notes.
* 0.3.1.10u
* Standard generation fixes
* 0.3.1.9-u * 0.3.1.9-u
* Generation improvements for standard * Generation improvements for standard
* Removed link sprite from repo * Removed link sprite from repo