summary refs log tree commit diff stats
path: root/__init__.py
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-12-10 13:15:42 -0500
committerGitHub <noreply@github.com>2023-12-10 19:15:42 +0100
commit99128f67a3b4478a5561b1ba33a2f3588a61a1df (patch)
tree6afdfc1d51bb8b6d22e6b20725aacaef9437ebb4 /__init__.py
parentee4ebe472759e91d511f3f151311f3a54e68051b (diff)
downloadlingo-apworld-99128f67a3b4478a5561b1ba33a2f3588a61a1df.tar.gz
lingo-apworld-99128f67a3b4478a5561b1ba33a2f3588a61a1df.tar.bz2
lingo-apworld-99128f67a3b4478a5561b1ba33a2f3588a61a1df.zip
Lingo: Fix entrance checking being broken on default settings (#2506)
The most serious issue this PR addresses is that entrances that use doors without items (a small subset of doors when door shuffle is on, but *every* door when door shuffle is off, which is the default) underestimate the requirements needed to use that entrance. The logic would calculate the panels needed to open the door, but would neglect to keep track of the rooms those panels were in, meaning that doors would be considered openable if you had the colors needed to solve a panel that's in a room you have no access to.

Another issue is that, previously, logic would always consider the "ANOTHER TRY" panel accessible for the purposes of the LEVEL 2 panel hunt. This could result in seeds where the player is expected to have exactly the correct number of solves to reach LEVEL 2, but in reality is short by one because ANOTHER TRY itself is not revealed until the panel hunt is complete. This change marks ANOTHER TRY as non-counting, because even though it is technically a counting panel in-game, it can never contribute to the LEVEL 2 panel hunt. This issue could also apply to THE MASTER, since it is the only other counting panel with special access rules, although it is much less likely. This change adds special handling for counting THE MASTER. These issues were possible to manifest whenever the LEVEL 2 panel hunt was enabled, which it is by default.

Smaller logic issues also fixed in this PR:

* The Orange Tower Basement MASTERY panel was marked as requiring the mastery doors to be opened, when it was actually possible to get it without them by using a painting to get into the room.
* The Pilgrim Room painting item was incorrectly being marked as a filler item, despite it being progression.
* There has been another update to the game that adds connections between areas that were previously not connected. These changes were additive, which is why they are not critical.
* The panel stacks in the rhyme room now require both colours on each panel.
Diffstat (limited to '__init__.py')
-rw-r--r--__init__.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/__init__.py b/__init__.py index a8dac86..f22d344 100644 --- a/__init__.py +++ b/__init__.py
@@ -104,9 +104,11 @@ class LingoWorld(World):
104 classification = item.classification 104 classification = item.classification
105 if hasattr(self, "options") and self.options.shuffle_paintings and len(item.painting_ids) > 0\ 105 if hasattr(self, "options") and self.options.shuffle_paintings and len(item.painting_ids) > 0\
106 and len(item.door_ids) == 0 and all(painting_id not in self.player_logic.painting_mapping 106 and len(item.door_ids) == 0 and all(painting_id not in self.player_logic.painting_mapping
107 for painting_id in item.painting_ids): 107 for painting_id in item.painting_ids)\
108 and "pilgrim_painting2" not in item.painting_ids:
108 # If this is a "door" that just moves one or more paintings, and painting shuffle is on and those paintings 109 # If this is a "door" that just moves one or more paintings, and painting shuffle is on and those paintings
109 # go nowhere, then this item should not be progression. 110 # go nowhere, then this item should not be progression. The Pilgrim Room painting is special and needs to be
111 # excluded from this.
110 classification = ItemClassification.filler 112 classification = ItemClassification.filler
111 113
112 return LingoItem(name, classification, item.code, self.player) 114 return LingoItem(name, classification, item.code, self.player)