about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2024-07-02 10:43:20 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2024-07-02 10:43:20 -0400
commitd87c722f0ed1415d6e75fdbbaeb4080aa458932c (patch)
tree23d218453983b8e2c8d22cb270be919d3a691e61
parenta23c80c47135f26995676328b8f305d6a794e01a (diff)
downloadlingo-archipelago-d87c722f0ed1415d6e75fdbbaeb4080aa458932c.tar.gz
lingo-archipelago-d87c722f0ed1415d6e75fdbbaeb4080aa458932c.tar.bz2
lingo-archipelago-d87c722f0ed1415d6e75fdbbaeb4080aa458932c.zip
Fix proxy panels happening on panelsanity
-rw-r--r--Archipelago/client.gd6
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: