diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2026-01-30 10:50:01 -0500 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2026-01-30 10:50:01 -0500 |
| commit | 9b5c160f60a4e6c679b0c1afca82d9a58523eaab (patch) | |
| tree | 3def18df041138da0a7656efdc99008f8b13ffad /apworld/client/rteMenu.gd | |
| parent | e9e4a7a42ca17e7dc1947b012c5f6a50047c159e (diff) | |
| download | lingo2-archipelago-daed-only.tar.gz lingo2-archipelago-daed-only.tar.bz2 lingo2-archipelago-daed-only.zip | |
Worked on daed-only mode daed-only
Diffstat (limited to 'apworld/client/rteMenu.gd')
| -rw-r--r-- | apworld/client/rteMenu.gd | 12 |
1 files changed, 12 insertions, 0 deletions
| diff --git a/apworld/client/rteMenu.gd b/apworld/client/rteMenu.gd new file mode 100644 index 0000000..5882d77 --- /dev/null +++ b/apworld/client/rteMenu.gd | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | extends "res://scripts/ui/rteMenu.gd" | ||
| 2 | |||
| 3 | |||
| 4 | func _readier(): | ||
| 5 | var ap = global.get_node("Archipelago") | ||
| 6 | if ap.daedalus_only: | ||
| 7 | get_node("rte_the_entry").hide() | ||
| 8 | get_node("rte_daedalus").show() | ||
| 9 | |||
| 10 | switcher.preload_map("res://objects/scenes/daedalus.tscn") | ||
| 11 | else: | ||
| 12 | super()._readier() | ||
