From d5d56ede8bfa71b7ec4818b2467fbe16354c82d7 Mon Sep 17 00:00:00 2001 From: Scipio Wright Date: Mon, 21 Apr 2025 15:20:22 -0400 Subject: [PATCH] TUNIC: Remove Outdated Plando Code (#4908) --- worlds/tunic/__init__.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/worlds/tunic/__init__.py b/worlds/tunic/__init__.py index 86a91a33..29791b4f 100644 --- a/worlds/tunic/__init__.py +++ b/worlds/tunic/__init__.py @@ -678,18 +678,6 @@ class TunicWorld(World): for _ in range(self.options.start_inventory_from_pool[start_item]): slot_data[start_item].extend(["Your Pocket", self.player]) - for plando_item in self.multiworld.plando_items[self.player]: - if plando_item["from_pool"]: - items_to_find = set() - for item_type in [key for key in ["item", "items"] if key in plando_item]: - for item in plando_item[item_type]: - items_to_find.add(item) - for item in items_to_find: - if item in slot_data_item_names: - slot_data[item] = [] - for item_location in self.multiworld.find_item_locations(item, self.player): - slot_data[item].extend(self.get_real_location(item_location)) - return slot_data # for the universal tracker, doesn't get called in standard gen