From bf0a12a210baf2da1fb315871bf7d6d5bb5123ae Mon Sep 17 00:00:00 2001 From: Daniel Grace Date: Sun, 26 Jun 2022 21:12:04 -0700 Subject: [PATCH] Fixes in response to beta testing and such. (#9) Remove left-on debug prints. --- worlds/hk/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/worlds/hk/__init__.py b/worlds/hk/__init__.py index 8fa7da235b1..aff8d015f78 100644 --- a/worlds/hk/__init__.py +++ b/worlds/hk/__init__.py @@ -300,7 +300,6 @@ def _add(item_name: str, location_name: str): for shop, locations in self.created_multi_locations.items(): for _ in range(len(locations), getattr(self.world, shop_to_option[shop])[self.player].value): loc = self.create_location(shop) - print(f"Created location {loc.name}") unfilled_locations += 1 # Balance the pool @@ -309,16 +308,13 @@ def _add(item_name: str, location_name: str): # Add additional shop items, as needed. if additional_shop_items > 0: - print(f"Additional shop items requested: {additional_shop_items}") shops = list(shop for shop, locations in self.created_multi_locations.items() if len(locations) < 16) if not self.world.EggShopSlots[self.player].value: # No eggshop, so don't place items there shops.remove('Egg_Shop') for _ in range(additional_shop_items): - print(f"Candidates: {shops}") shop = self.world.random.choice(shops) loc = self.create_location(shop) - print(f"Created location {loc.name}") unfilled_locations += 1 if len(self.created_multi_locations[shop]) >= 16: shops.remove(shop)