From 5db1758e87b4670dc8cd74bc66e75adeb25e5ad8 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sat, 8 Nov 2025 20:03:29 -0500 Subject: [PATCH] feat: update default WebSocket URL to active public server for connection --- src/OverteClient.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OverteClient.cpp b/src/OverteClient.cpp index 1ea1dd4..8c404f4 100644 --- a/src/OverteClient.cpp +++ b/src/OverteClient.cpp @@ -129,7 +129,7 @@ bool OverteClient::connect() { // Parse ws://host:port std::string url = m_domainUrl; - if (url.empty()) url = "ws://127.0.0.1:40102"; + if (url.empty()) url = "ws://67.189.29.126:40102"; // BrainStormers_World - active public server if (url.rfind("ws://", 0) == 0) url = url.substr(5); auto colon = url.find(':'); m_host = colon == std::string::npos ? url : url.substr(0, colon);