From fb16f9c6490850733ec67fd0fd7508a4d9691318 Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Tue, 28 Nov 2023 22:04:08 -0500 Subject: Hide the true countdown panels --- Archipelago/load.gd | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Archipelago') 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(): set_gridmap_tile(-88.5, 4.5, -41.5, "MeshInstance8") set_gridmap_tile(-89.5, 4.5, -41.5, "MeshInstance4") + # Hide the countdown true panels. + for child in $CountdownPanels.get_children(): + if child.is_class("Spatial"): + child.get_node(child.replace_with).translation.y -= 100.0 + if apclient.confusify_world: # Remove welcome back / color hallway / sunwarp indicators. get_node("Decorations/Signs/Welcome Back Signs").queue_free() -- cgit 1.4.1