From 5345937966764c86e64fcff0bd5b5fd732ef9505 Mon Sep 17 00:00:00 2001 From: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> Date: Tue, 30 Sep 2025 04:45:59 +0200 Subject: [PATCH] The Witness: Remove two things from slot_data that nothing uses anymore #5502 --- worlds/witness/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/worlds/witness/__init__.py b/worlds/witness/__init__.py index bce9bb5151..6aaf2fdc0a 100644 --- a/worlds/witness/__init__.py +++ b/worlds/witness/__init__.py @@ -104,7 +104,6 @@ class WitnessWorld(World): "item_id_to_door_hexes": static_witness_items.get_item_to_door_mappings(), "door_items_in_the_pool": self.player_items.get_door_item_ids_in_pool(), "doors_that_shouldnt_be_locked": [int(h, 16) for h in self.player_logic.FORBIDDEN_DOORS], - "symbols_not_in_the_game": self.player_items.get_symbol_ids_not_in_pool(), "disabled_entities": [int(h, 16) for h in self.player_logic.COMPLETELY_DISABLED_ENTITIES], "hunt_entities": [int(h, 16) for h in self.player_logic.HUNT_ENTITIES], "log_ids_to_hints": self.log_ids_to_hints, @@ -112,7 +111,6 @@ class WitnessWorld(World): "progressive_item_lists": self.player_items.get_progressive_item_ids_in_pool(), "obelisk_side_id_to_EPs": static_witness_logic.OBELISK_SIDE_ID_TO_EP_HEXES, "precompleted_puzzles": [int(h, 16) for h in self.player_logic.EXCLUDED_ENTITIES], - "entity_to_name": static_witness_logic.ENTITY_ID_TO_NAME, "panel_hunt_required_absolute": self.panel_hunt_required_count }