Skip to content

Commit 8b74879

Browse files
authored
Merge pull request #2930 from GreenestBeen/pufftoss-fix
Pufftoss fix
2 parents 5360ce6 + 53b3fe2 commit 8b74879

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

randomizer/Settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1744,7 +1744,7 @@ def resolve_settings(self):
17441744
phases = phases[: self.krool_phase_count]
17451745
if phases[-1] == Maps.GalleonBoss:
17461746
# Pufftoss can't be last. Pick something else
1747-
phases[-1] == self.random.choice([x for x in possible_phases if x not in phases])
1747+
phases[-1] = self.random.choice([x for x in possible_phases if x not in phases])
17481748
# Plandomized K. Rool algorithm
17491749
if self.enable_plandomizer:
17501750
planned_phases = []

0 commit comments

Comments
 (0)