diff options
| author | nokoe <nokoe@mailbox.org> | 2024-10-01 16:16:20 +0200 | 
|---|---|---|
| committer | nokoe <nokoe@mailbox.org> | 2024-10-01 16:16:20 +0200 | 
| commit | d5c8dfa49a7bc4740a10d2bf6db56aaab537a355 (patch) | |
| tree | 35ce14fb643d40014eb1d25f16c4ce76f1d3b877 /client/menu/play.gd | |
| parent | cf2219885357a02ef08f0de1c2ce566250ff6273 (diff) | |
| download | hurrycurry-d5c8dfa49a7bc4740a10d2bf6db56aaab537a355.tar hurrycurry-d5c8dfa49a7bc4740a10d2bf6db56aaab537a355.tar.bz2 hurrycurry-d5c8dfa49a7bc4740a10d2bf6db56aaab537a355.tar.zst  | |
save settings and profile after registry consent
Diffstat (limited to 'client/menu/play.gd')
| -rw-r--r-- | client/menu/play.gd | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/client/menu/play.gd b/client/menu/play.gd index 9cf1bbaa..573061d3 100644 --- a/client/menu/play.gd +++ b/client/menu/play.gd @@ -51,6 +51,8 @@ func _ready():  		data.buttons = [deny_button, allow_button]  		await submenu("res://menu/popup.tscn", data)  		Global.set_profile("registry_asked", true) +		Global.save_settings() +		Global.save_profile()  	ServerList.start()  func update_server_list(lists: Array[Array]):  |