feat: update nakama, and patch, checkpoint for restore 2.3.1

This commit is contained in:
2026-07-13 18:11:56 +08:00
parent 8b7cec9a7a
commit e240aaae3e
22 changed files with 1700 additions and 8 deletions
+2 -1
View File
@@ -40,7 +40,8 @@ func _try_restore_session() -> void:
var file := FileAccess.open_encrypted_with_pass(SESSION_FILE, FileAccess.READ, ENCRYPTION_KEY)
if not file:
print("[AuthManager] Could not open session file")
print("[AuthManager] Could not open session file. Corrupt or wrong key. Deleting.")
DirAccess.remove_absolute(SESSION_FILE)
return
var session_data = file.get_var()