about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-11-29 12:41:18 -0500
committerStar Rauchenberger <fefferburbia@gmail.com>2023-11-29 12:41:18 -0500
commit59e44bbb2a89dd2228b6f39e6964f8dd456d33c9 (patch)
treef3a7c64cbb181204b0a5d2e81f553a599ca100ea
parentfb16f9c6490850733ec67fd0fd7508a4d9691318 (diff)
downloadlingo-archipelago-59e44bbb2a89dd2228b6f39e6964f8dd456d33c9.tar.gz
lingo-archipelago-59e44bbb2a89dd2228b6f39e6964f8dd456d33c9.tar.bz2
lingo-archipelago-59e44bbb2a89dd2228b6f39e6964f8dd456d33c9.zip
We have to move the cdps earlier
-rw-r--r--Archipelago/load.gd10
1 files changed, 5 insertions, 5 deletions
diff --git a/Archipelago/load.gd b/Archipelago/load.gd index 9062051..2835bb4 100644 --- a/Archipelago/load.gd +++ b/Archipelago/load.gd
@@ -34,6 +34,11 @@ func _load():
34 for node in get_tree().get_nodes_in_group("answer_you"): 34 for node in get_tree().get_nodes_in_group("answer_you"):
35 if "answer" in node: 35 if "answer" in node:
36 node.answer = apclient.ap_user 36 node.answer = apclient.ap_user
37
38 # Hide the countdown true panels.
39 for child in $CountdownPanels.get_children():
40 if child.is_class("Spatial"):
41 child.get_node(child.replace_with).translation.y -= 100.0
37 42
38 # Create "The Wanderer". 43 # Create "The Wanderer".
39 set_gridmap_tile(-4.5, 6.5, 56.5, "MeshInstance4") 44 set_gridmap_tile(-4.5, 6.5, 56.5, "MeshInstance4")
@@ -181,11 +186,6 @@ func _load():
181 set_gridmap_tile(-88.5, 4.5, -41.5, "MeshInstance8") 186 set_gridmap_tile(-88.5, 4.5, -41.5, "MeshInstance8")
182 set_gridmap_tile(-89.5, 4.5, -41.5, "MeshInstance4") 187 set_gridmap_tile(-89.5, 4.5, -41.5, "MeshInstance4")
183 188
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
189 if apclient.confusify_world: 189 if apclient.confusify_world:
190 # Remove welcome back / color hallway / sunwarp indicators. 190 # Remove welcome back / color hallway / sunwarp indicators.
191 get_node("Decorations/Signs/Welcome Back Signs").queue_free() 191 get_node("Decorations/Signs/Welcome Back Signs").queue_free()