Skip to content

Commit 337e875

Browse files
Merge pull request #2502 from 2dos/dev
Dev to Master
2 parents 5b36075 + d5dd3d7 commit 337e875

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
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 = 4.10.65
4+
current_version = 4.10.66
55

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

randomizer/Fill.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1215,7 +1215,13 @@ def CalculateWothPaths(spoiler: Spoiler, WothLocations: List[Union[Locations, in
12151215
raise Ex.FillException("Rare path calculation error - report this to the devs with your settings string. Error code PL-2")
12161216
for goal, path in spoiler.rap_win_con_paths.items():
12171217
if len(path) < 1:
1218-
raise Ex.FillException("Rare path calculation error - report this to the devs with your settings string. Error code PL-3")
1218+
# One verse is sometimes expected to have no items on the path
1219+
expectedEmptyPathVerses = []
1220+
# If your training moves are unshuffled, they don't end up on paths. Chunky Verse only requires barrels, so it no longer has any path requirements.
1221+
if spoiler.settings.training_barrels == TrainingBarrels.normal:
1222+
expectedEmptyPathVerses.append(Events.ChunkyVerse)
1223+
if rap_assoc_name[goal] not in expectedEmptyPathVerses:
1224+
raise Ex.FillException("Rare path calculation error - report this to the devs with your settings string. Error code PL-3")
12191225

12201226

12211227
def CalculateFoolish(spoiler: Spoiler, WothLocations: List[Union[Locations, int]], MajorItems: List[Items]) -> None:

randomizer/Spoiler.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,6 @@ def createJson(self) -> None:
862862
phase_name = boss_map_names.get(map_id, Maps(map_id).name)
863863
humanspoiler["WotH Paths"][phase_name] = path_dict
864864
if self.settings.win_condition_item == WinConditionComplex.dk_rap_items:
865-
print(self.rap_win_con_paths)
866865
for verse_name, path in self.rap_win_con_paths.items():
867866
path_dict = {}
868867
for path_loc_id in path:

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 = "4.10.65"
3+
version = "4.10.66"

0 commit comments

Comments
 (0)