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