about summary refs log tree commit diff stats
path: root/Archipelago/load.gd
diff options
context:
space:
mode:
Diffstat (limited to 'Archipelago/load.gd')
-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()