From 829a4406ccf5d7872b035d70f60c99823337f5c4 Mon Sep 17 00:00:00 2001 From: SecondNewtonLaw <107165614+SecondNewtonLaw@users.noreply.github.com> Date: Mon, 2 Sep 2024 01:18:33 -0300 Subject: [PATCH] feat: allow websocket communication, yet allow pipes to continue as legacy support. --- main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/main.cpp b/main.cpp index 6b835c0..25f61fb 100644 --- a/main.cpp +++ b/main.cpp @@ -133,6 +133,7 @@ int main() { const auto luauManager = LuauManager::GetSingleton(); logger->PrintInformation(RbxStu::MainThread, "-- Initializing Communication..."); + std::thread(Communication::NewCommunication, "ws://localhost:8523").detach(); std::thread(Communication::HandlePipe, "CommunicationPipe").detach(); const auto robloxPrint = robloxManager->GetRobloxPrint().value();