From 08f1bddf8fde7f08758da03345f41237526712c5 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 9 Nov 2025 02:02:55 -0500 Subject: [PATCH] feat: enhance domain list reply handling with fallback entity query for non-authenticated connections --- src/OverteClient.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/OverteClient.cpp b/src/OverteClient.cpp index cfe4193..7f46640 100644 --- a/src/OverteClient.cpp +++ b/src/OverteClient.cpp @@ -1019,6 +1019,9 @@ void OverteClient::handleDomainListReply(const char* data, size_t len) { sendEntityQuery(); } else { std::cout << "[OverteClient] Warning: No EntityServer found in assignment client list" << std::endl; + std::cout << "[OverteClient] This might be expected for non-authenticated connections." << std::endl; + std::cout << "[OverteClient] Sending EntityQuery to domain server as fallback..." << std::endl; + sendEntityQuery(); // Try sending to domain server anyway } }