diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-19 11:06:58 -0400 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-19 11:06:58 -0400 |
| commit | e0fc5280442ea7a989b3b8e34333003099e20c32 (patch) | |
| tree | 6942caac300a3b78e7030eebf71d447bfb69cdd5 /client/Archipelago/door.gd | |
| parent | 2115232d2fec48fceef052b476af4afb02746ad1 (diff) | |
| download | lingo2-archipelago-e0fc5280442ea7a989b3b8e34333003099e20c32.tar.gz lingo2-archipelago-e0fc5280442ea7a989b3b8e34333003099e20c32.tar.bz2 lingo2-archipelago-e0fc5280442ea7a989b3b8e34333003099e20c32.zip | |
[Client] Handle strict purple/cyan ending options
Diffstat (limited to 'client/Archipelago/door.gd')
| -rw-r--r-- | client/Archipelago/door.gd | 8 |
1 files changed, 8 insertions, 0 deletions
| diff --git a/client/Archipelago/door.gd b/client/Archipelago/door.gd index fead818..49f5728 100644 --- a/client/Archipelago/door.gd +++ b/client/Archipelago/door.gd | |||
| @@ -28,6 +28,14 @@ func _ready(): | |||
| 28 | 28 | ||
| 29 | call_deferred("_readier") | 29 | call_deferred("_readier") |
| 30 | 30 | ||
| 31 | if global.map == "the_sun_temple": | ||
| 32 | if name == "spe_EndPlatform" or name == "spe_entry_2": | ||
| 33 | senders = [NodePath("/root/scene/Panels/EndCheck_dog")] | ||
| 34 | |||
| 35 | if global.map == "the_parthenon": | ||
| 36 | if name == "spe_entry_1": | ||
| 37 | senders = [NodePath("/root/scene/Panels/EndCheck_dog")] | ||
| 38 | |||
| 31 | super._ready() | 39 | super._ready() |
| 32 | 40 | ||
| 33 | 41 | ||
