remove debug print

This commit is contained in:
espeon65536 2021-09-11 10:18:41 -05:00 committed by Fabian Dill
parent 4e18f24f3b
commit e2b36dfa7d
1 changed files with 0 additions and 1 deletions

View File

@ -674,7 +674,6 @@ class OOTWorld(World):
gc = next(filter(lambda dungeon: dungeon.name == 'Ganons Castle', self.dungeons)) gc = next(filter(lambda dungeon: dungeon.name == 'Ganons Castle', self.dungeons))
locations = [loc.name for region in gc.regions for loc in region.locations if loc.item is None] locations = [loc.name for region in gc.regions for loc in region.locations if loc.item is None]
junk_fill_locations = self.world.random.sample(locations, round(len(locations) * ganon_junk_fill)) junk_fill_locations = self.world.random.sample(locations, round(len(locations) * ganon_junk_fill))
print(junk_fill_locations)
exclusion_rules(self.world, self.player, junk_fill_locations) exclusion_rules(self.world, self.player, junk_fill_locations)
# Locations which are not sendable must be converted to events # Locations which are not sendable must be converted to events