diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-04 15:51:45 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-09-04 15:51:45 -0400 |
commit | 75c1bcbe134e6771b0e42b8603954c1c0fd95139 (patch) | |
tree | 241a26bb605401b31a2e289bfa2eb4bb024fcbfd /client/Archipelago/player.gd | |
parent | a752ab325cf46d35a90606a354775799977dccb0 (diff) | |
download | lingo2-archipelago-75c1bcbe134e6771b0e42b8603954c1c0fd95139.tar.gz lingo2-archipelago-75c1bcbe134e6771b0e42b8603954c1c0fd95139.tar.bz2 lingo2-archipelago-75c1bcbe134e6771b0e42b8603954c1c0fd95139.zip |
[Client] Handle roof access option
Diffstat (limited to 'client/Archipelago/player.gd')
-rw-r--r-- | client/Archipelago/player.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/Archipelago/player.gd b/client/Archipelago/player.gd index 93eb14f..4569af5 100644 --- a/client/Archipelago/player.gd +++ b/client/Archipelago/player.gd | |||
@@ -139,7 +139,7 @@ func _ready(): | |||
139 | get_parent().add_child.call_deferred(locationListener) | 139 | get_parent().add_child.call_deferred(locationListener) |
140 | 140 | ||
141 | # Block off roof access in Daedalus. | 141 | # Block off roof access in Daedalus. |
142 | if global.map == "daedalus": | 142 | if global.map == "daedalus" and not ap.daedalus_roof_access: |
143 | _set_up_invis_wall(75.5, 11, -24.5, 1, 10, 49) | 143 | _set_up_invis_wall(75.5, 11, -24.5, 1, 10, 49) |
144 | _set_up_invis_wall(51.5, 11, -17, 16, 10, 1) | 144 | _set_up_invis_wall(51.5, 11, -17, 16, 10, 1) |
145 | _set_up_invis_wall(46, 10, -9.5, 1, 10, 10) | 145 | _set_up_invis_wall(46, 10, -9.5, 1, 10, 10) |