Skip to content

Commit e60dbee

Browse files
ScipioWrightJames McIntosh
authored andcommitted
TUNIC: Remove Outdated Plando Code (ArchipelagoMW#4908)
1 parent 62e6b30 commit e60dbee

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

worlds/tunic/__init__.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -678,18 +678,6 @@ def fill_slot_data(self) -> Dict[str, Any]:
678678
for _ in range(self.options.start_inventory_from_pool[start_item]):
679679
slot_data[start_item].extend(["Your Pocket", self.player])
680680

681-
for plando_item in self.multiworld.plando_items[self.player]:
682-
if plando_item["from_pool"]:
683-
items_to_find = set()
684-
for item_type in [key for key in ["item", "items"] if key in plando_item]:
685-
for item in plando_item[item_type]:
686-
items_to_find.add(item)
687-
for item in items_to_find:
688-
if item in slot_data_item_names:
689-
slot_data[item] = []
690-
for item_location in self.multiworld.find_item_locations(item, self.player):
691-
slot_data[item].extend(self.get_real_location(item_location))
692-
693681
return slot_data
694682

695683
# for the universal tracker, doesn't get called in standard gen

0 commit comments

Comments
 (0)