Skip to content

Commit ff2602f

Browse files
committed
Fix infinite loop in World.bigocto_location
1 parent 248f252 commit ff2602f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

World.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1333,7 +1333,7 @@ def bigocto_location(self) -> Optional[Location]:
13331333
for exit in region.exits
13341334
if exit.connected_region is not None
13351335
and (exit.connected_region.dungeon is None or exit.connected_region.dungeon.name != 'Jabu Jabus Belly')
1336-
and exit.connected_region.name not in already_checked
1336+
and exit.connected_region not in already_checked
13371337
}
13381338
self.cached_bigocto_location = location
13391339
return location

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__version__ = '9.0.14'
22

33
# This is a supplemental version number for branches based off of main dev.
4-
supplementary_version = 4
4+
supplementary_version = 5
55

66
# Pick a unique identifier byte for your fork if you are intending to have a long-lasting branch.
77
# This will be 0x00 for main releases and 0x01 for main dev.

0 commit comments

Comments
 (0)