Skip to content

Commit 3399ca7

Browse files
TRPG0AustinSumigray
authored andcommitted
Bomb Rush Cyberfunk: Fix missing location (ArchipelagoMW#3475)
1 parent 8ca59fe commit 3399ca7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

worlds/bomb_rush_cyberfunk/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def generate_early(self):
109109
def create_items(self):
110110
rep_locations: int = 87
111111
if self.options.skip_polo_photos:
112-
rep_locations -= 18
112+
rep_locations -= 17
113113

114114
self.options.total_rep.round_to_nearest_step()
115115
rep_counts = self.options.total_rep.get_rep_item_counts(self.random, rep_locations)
@@ -157,7 +157,7 @@ def create_regions(self):
157157
self.get_region(n).add_exits(region_exits[n])
158158

159159
for index, loc in enumerate(location_table):
160-
if self.options.skip_polo_photos and "Polo" in loc["name"]:
160+
if self.options.skip_polo_photos and "Polo" in loc["game_id"]:
161161
continue
162162
stage: Region = self.get_region(loc["stage"])
163163
stage.add_locations({loc["name"]: base_id + index})

0 commit comments

Comments
 (0)