diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-07-02 10:43:20 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2024-07-02 10:43:20 -0400 |
commit | d87c722f0ed1415d6e75fdbbaeb4080aa458932c (patch) | |
tree | 23d218453983b8e2c8d22cb270be919d3a691e61 /Archipelago/client.gd | |
parent | a23c80c47135f26995676328b8f305d6a794e01a (diff) | |
download | lingo-archipelago-d87c722f0ed1415d6e75fdbbaeb4080aa458932c.tar.gz lingo-archipelago-d87c722f0ed1415d6e75fdbbaeb4080aa458932c.tar.bz2 lingo-archipelago-d87c722f0ed1415d6e75fdbbaeb4080aa458932c.zip |
Fix proxy panels happening on panelsanity
Diffstat (limited to 'Archipelago/client.gd')
-rw-r--r-- | Archipelago/client.gd | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Archipelago/client.gd b/Archipelago/client.gd index 916fd98..80f9bc1 100644 --- a/Archipelago/client.gd +++ b/Archipelago/client.gd | |||
@@ -330,7 +330,11 @@ func _on_data(): | |||
330 | if _slot_data.has("sunwarp_permutation"): | 330 | if _slot_data.has("sunwarp_permutation"): |
331 | _sunwarp_mapping = _slot_data["sunwarp_permutation"] | 331 | _sunwarp_mapping = _slot_data["sunwarp_permutation"] |
332 | 332 | ||
333 | if _door_shuffle and not _early_color_hallways: | 333 | if ( |
334 | _location_classification_bit != kCLASSIFICATION_LOCAL_INSANITY | ||
335 | and _door_shuffle | ||
336 | and not _early_color_hallways | ||
337 | ): | ||
334 | _location_classification_bit += kCLASSIFICATION_LOCAL_SMALL_SPHERE_ONE | 338 | _location_classification_bit += kCLASSIFICATION_LOCAL_SMALL_SPHERE_ONE |
335 | 339 | ||
336 | if track_player: | 340 | if track_player: |