diff options
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() | ||
