diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-09-28 13:33:19 -0400 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-09-28 13:33:19 -0400 |
| commit | 4af6a856f804c9f86a5f598516af3c9c128e93ee (patch) | |
| tree | b02a2a5b63c68723e63fee1e3f1f0eb60908258c /Archipelago/client.gd | |
| parent | d74779819cba60dae9163daccbf6b54c500047b3 (diff) | |
| download | lingo-archipelago-4af6a856f804c9f86a5f598516af3c9c128e93ee.tar.gz lingo-archipelago-4af6a856f804c9f86a5f598516af3c9c128e93ee.tar.bz2 lingo-archipelago-4af6a856f804c9f86a5f598516af3c9c128e93ee.zip | |
Added support for early color hallways
Diffstat (limited to 'Archipelago/client.gd')
| -rw-r--r-- | Archipelago/client.gd | 3 |
1 files changed, 3 insertions, 0 deletions
| diff --git a/Archipelago/client.gd b/Archipelago/client.gd index 0403d67..b481703 100644 --- a/Archipelago/client.gd +++ b/Archipelago/client.gd | |||
| @@ -92,6 +92,7 @@ var _painting_shuffle = false | |||
| 92 | var _mastery_achievements = 21 | 92 | var _mastery_achievements = 21 |
| 93 | var _level_2_requirement = 223 | 93 | var _level_2_requirement = 223 |
| 94 | var _location_classification_bit = 0 | 94 | var _location_classification_bit = 0 |
| 95 | var _early_color_hallways = false | ||
| 95 | var _slot_seed = 0 | 96 | var _slot_seed = 0 |
| 96 | 97 | ||
| 97 | var _map_loaded = false | 98 | var _map_loaded = false |
| @@ -264,6 +265,8 @@ func _on_data(): | |||
| 264 | _location_classification_bit = kCLASSIFICATION_LOCAL_REDUCED | 265 | _location_classification_bit = kCLASSIFICATION_LOCAL_REDUCED |
| 265 | elif _slot_data["location_checks"] == kCLASSIFICATION_REMOTE_INSANITY: | 266 | elif _slot_data["location_checks"] == kCLASSIFICATION_REMOTE_INSANITY: |
| 266 | _location_classification_bit = kCLASSIFICATION_LOCAL_INSANITY | 267 | _location_classification_bit = kCLASSIFICATION_LOCAL_INSANITY |
| 268 | if _slot_data.has("early_color_hallways"): | ||
| 269 | _early_color_hallways = _slot_data["early_color_hallways"] | ||
| 267 | 270 | ||
| 268 | _puzzle_skips = 0 | 271 | _puzzle_skips = 0 |
| 269 | 272 | ||
