about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2023-08-06 19:00:23 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2023-08-06 19:00:23 -0400
commitf839741d69d75abf0027d2d90c9cf347306fa071 (patch)
tree20db0d1a2f2012d0c41607c84d17d10e02ce486b
parent62162a027b074000985e1cc8d90a1b0bd760c5d1 (diff)
downloadlingo-archipelago-f839741d69d75abf0027d2d90c9cf347306fa071.tar.gz
lingo-archipelago-f839741d69d75abf0027d2d90c9cf347306fa071.tar.bz2
lingo-archipelago-f839741d69d75abf0027d2d90c9cf347306fa071.zip
Prevent ANOTHER WAY spawning too early on reload
-rw-r--r--Archipelago/load.gd1
1 files changed, 1 insertions, 0 deletions
diff --git a/Archipelago/load.gd b/Archipelago/load.gd index 57c7271..58dcd37 100644 --- a/Archipelago/load.gd +++ b/Archipelago/load.gd
@@ -100,6 +100,7 @@ func _load():
100 new_another_cdp.maxlength = (apclient._level_2_requirement - 1) 100 new_another_cdp.maxlength = (apclient._level_2_requirement - 1)
101 new_another_cdp.nested = true 101 new_another_cdp.nested = true
102 get_node("CountdownPanels").add_child(new_another_cdp) 102 get_node("CountdownPanels").add_child(new_another_cdp)
103 another_cdp.replace_with = ""
103 another_cdp.queue_free() 104 another_cdp.queue_free()
104 else: 105 else:
105 var another_replacement = another_cdp.get_node(another_cdp.replace_with) 106 var another_replacement = another_cdp.get_node(another_cdp.replace_with)