From 39cb8cbc54c25b0f174cb767ed6db33900968ef4 Mon Sep 17 00:00:00 2001 From: str1k3r <115313679+S1l3ntStr1ke87@users.noreply.github.com> Date: Wed, 3 Jun 2026 11:03:07 -0400 Subject: [PATCH] Fix: Game not launching with launcher --- Minecraft.Client/Windows64/Windows64_Minecraft.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp index 3b52b1f0..628ba5bb 100644 --- a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp +++ b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp @@ -148,7 +148,7 @@ static bool FetchSessionInfo() { std::vector headers; headers.push_back(L"Content-Type: text/plain"); - HttpResponse response = WinsockNetLayer::DoWinHttpRequest(L"/getAccountInfo", L"POST", Windows64Minecraft::GetAuthenticationTicket(), headers); + HttpResponse response = WinsockNetLayer::DoWinHttpRequest(L"/accountinfo", L"POST", Windows64Minecraft::GetAuthenticationTicket(), headers); if (response.status == 0) return false;