Added Mire Torches holes

Fixed simple generation issue with crossed
Typo in gui
Killed the dungeon changer door in throne room
This commit is contained in:
aerinon
2020-01-07 08:53:06 -07:00
parent 19faf41e79
commit ea685c6a74
6 changed files with 9 additions and 4 deletions

View File

@@ -1128,7 +1128,7 @@ def assign_crystal_switch_sectors(dungeon_map, crystal_switches, assign_one=Fals
assign_sector(random.choice(list(crystal_switches)), builder, crystal_switches)
return crystal_switches
sector_list = list(crystal_switches)
choices = random.choices(sector_list, k=len(population))
choices = random.sample(sector_list, k=len(population))
for i, choice in enumerate(choices):
builder = dungeon_map[population[i]]
assign_sector(choice, builder, crystal_switches)