Skip to content

Commit ff42aa0

Browse files
committed
Merge branch 'portal-fix' of https://github.com/UmedMuzl/DK64-Randomizer into portal-fix
2 parents 68e2c7f + 6ea5f4f commit ff42aa0

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[bumpversion]
22
commit = True
33
tag = False
4-
current_version = 5.8.1
4+
current_version = 5.8.2
55

66
[bumpversion:file:version.py]
77
search = version = "{current_version}"

randomizer/Settings.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@
5555
from randomizer.Prices import CompleteVanillaPrices, RandomizePrices, VanillaPrices
5656
from randomizer.SettingStrings import encrypt_settings_string_enum
5757
from randomizer.ShuffleBosses import (
58+
BossMapList,
59+
KRoolMaps,
5860
ShuffleBosses,
5961
ShuffleBossKongs,
6062
ShuffleKKOPhaseOrder,
@@ -1773,6 +1775,9 @@ def resolve_settings(self):
17731775
Maps.CastleBoss,
17741776
]
17751777
)
1778+
# This guard is for backwards compatibility
1779+
if not self.bosses_selected:
1780+
self.bosses_selected = BossMapList.copy() + KRoolMaps.copy()
17761781
phases = [x for x in phases if x in self.bosses_selected]
17771782
possible_phases = phases.copy()
17781783
if self.krool_phase_order_rando:

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Holds the version for DK64 Rando."""
22

3-
version = "5.8.1"
3+
version = "5.8.2"

0 commit comments

Comments
 (0)