diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-07-02 13:28:47 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-07-02 13:28:47 -0400 |
commit | 23a02373165e405e4f920874f3c5f1df1f6ebce7 (patch) | |
tree | de86cf584b57fe3d3780fd8baff639ac1183064b | |
parent | 9ba8df26260e40114b0c8896499e416e7d137439 (diff) | |
download | lingo-archipelago-23a02373165e405e4f920874f3c5f1df1f6ebce7.tar.gz lingo-archipelago-23a02373165e405e4f920874f3c5f1df1f6ebce7.tar.bz2 lingo-archipelago-23a02373165e405e4f920874f3c5f1df1f6ebce7.zip |
Block roof access to The Wondrous
-rw-r--r-- | Archipelago/load.gd | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Archipelago/load.gd b/Archipelago/load.gd index 5d37595..3b2f9ad 100644 --- a/Archipelago/load.gd +++ b/Archipelago/load.gd | |||
@@ -141,6 +141,11 @@ func _load(): | |||
141 | set_small_gridmap_tile(-76.25, 1.25, 16.75, "SmallMeshInstance5") | 141 | set_small_gridmap_tile(-76.25, 1.25, 16.75, "SmallMeshInstance5") |
142 | set_small_gridmap_tile(-76.75, 1.25, 16.75, "SmallMeshInstance5") | 142 | set_small_gridmap_tile(-76.75, 1.25, 16.75, "SmallMeshInstance5") |
143 | 143 | ||
144 | # Block the roof access to The Wondrous. | ||
145 | for x in range(0, 3): | ||
146 | for z in range(0, 3): | ||
147 | set_gridmap_tile(-95.5 - x, -3.5, -44.5 - z, "MeshInstance4") | ||
148 | |||
144 | if apclient._panel_shuffle != apclient.kNO_PANEL_SHUFFLE: | 149 | if apclient._panel_shuffle != apclient.kNO_PANEL_SHUFFLE: |
145 | # Make The Wondrous's FIRE solely midred. | 150 | # Make The Wondrous's FIRE solely midred. |
146 | set_gridmap_tile(-76.5, 1.5, -73.5, "MeshInstance18") | 151 | set_gridmap_tile(-76.5, 1.5, -73.5, "MeshInstance18") |