feat: enhance domain list reply handling with fallback entity query for non-authenticated connections

This commit is contained in:
MayaTheShy
2025-11-09 02:02:55 -05:00
parent a399712cec
commit 08f1bddf8f

View File

@@ -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
}
}