diff options
Diffstat (limited to 'client/global.gd')
-rw-r--r-- | client/global.gd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/global.gd b/client/global.gd index 4c147198..f9682cbf 100644 --- a/client/global.gd +++ b/client/global.gd @@ -25,7 +25,7 @@ signal using_touch_change(using: bool) const VERSION := "2.3.1" var default_profile := { - "username": "Giovanni", + "username": "", "character_style": { "color": 0, "headwear": 0, @@ -64,6 +64,7 @@ var current_map_name := "" var last_map_name := "" # last map name for displaying in rating menu var focused_node: Control +var focused_menu: Menu # only use this as a last resort, currently exists to open setup menu from settings func _ready(): profile = load_dict("user://profile", default_profile) |