diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-11-28 22:04:08 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-11-28 22:04:08 -0500 |
commit | fb16f9c6490850733ec67fd0fd7508a4d9691318 (patch) | |
tree | ea793ec106779d5b0d8faa9cf53b8912d2e5289d /Archipelago | |
parent | a6499a6d7a74218e6a624f33105d82bb6d39baa8 (diff) | |
download | lingo-archipelago-fb16f9c6490850733ec67fd0fd7508a4d9691318.tar.gz lingo-archipelago-fb16f9c6490850733ec67fd0fd7508a4d9691318.tar.bz2 lingo-archipelago-fb16f9c6490850733ec67fd0fd7508a4d9691318.zip |
Hide the true countdown panels
Diffstat (limited to 'Archipelago')
-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 a6e428a..9062051 100644 --- a/Archipelago/load.gd +++ b/Archipelago/load.gd | |||
@@ -181,6 +181,11 @@ func _load(): | |||
181 | set_gridmap_tile(-88.5, 4.5, -41.5, "MeshInstance8") | 181 | set_gridmap_tile(-88.5, 4.5, -41.5, "MeshInstance8") |
182 | set_gridmap_tile(-89.5, 4.5, -41.5, "MeshInstance4") | 182 | set_gridmap_tile(-89.5, 4.5, -41.5, "MeshInstance4") |
183 | 183 | ||
184 | # Hide the countdown true panels. | ||
185 | for child in $CountdownPanels.get_children(): | ||
186 | if child.is_class("Spatial"): | ||
187 | child.get_node(child.replace_with).translation.y -= 100.0 | ||
188 | |||
184 | if apclient.confusify_world: | 189 | if apclient.confusify_world: |
185 | # Remove welcome back / color hallway / sunwarp indicators. | 190 | # Remove welcome back / color hallway / sunwarp indicators. |
186 | get_node("Decorations/Signs/Welcome Back Signs").queue_free() | 191 | get_node("Decorations/Signs/Welcome Back Signs").queue_free() |