diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-13 13:38:47 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-13 13:38:47 -0400 |
commit | a936c5823f12fffe4b6ef70bda17accb15de0b73 (patch) | |
tree | c7a8acb6a2ca32a1fc7270986356de7eeb439303 /client/Archipelago/worldport.gd | |
parent | 19316af04812bc69f29ded74ab3d07c7343690eb (diff) | |
download | lingo2-archipelago-a936c5823f12fffe4b6ef70bda17accb15de0b73.tar.gz lingo2-archipelago-a936c5823f12fffe4b6ef70bda17accb15de0b73.tar.bz2 lingo2-archipelago-a936c5823f12fffe4b6ef70bda17accb15de0b73.zip |
[Client] Prevent breaking roof logic with Icarus
Diffstat (limited to 'client/Archipelago/worldport.gd')
-rw-r--r-- | client/Archipelago/worldport.gd | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/Archipelago/worldport.gd b/client/Archipelago/worldport.gd new file mode 100644 index 0000000..d0fb6c9 --- /dev/null +++ b/client/Archipelago/worldport.gd | |||
@@ -0,0 +1,10 @@ | |||
1 | extends "res://scripts/nodes/worldport.gd" | ||
2 | |||
3 | |||
4 | func _ready(): | ||
5 | if global.map == "icarus" and exit == "daedalus": | ||
6 | var ap = global.get_node("Archipelago") | ||
7 | if not ap.daedalus_roof_access: | ||
8 | entry_point = Vector3(58, 10, 0) | ||
9 | |||
10 | super._ready() | ||