diff options
-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: |