From d5da7c9bde320b83304d1be0a1c59a194f24eed0 Mon Sep 17 00:00:00 2001 From: DioEgizio <83089242+DioEgizio@users.noreply.github.com> Date: Sat, 17 Jan 2026 21:59:33 +0100 Subject: [PATCH] fix: improve we couldn't launch after 3 tries message Signed-off-by: DioEgizio <83089242+DioEgizio@users.noreply.github.com> --- launcher/LaunchController.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/launcher/LaunchController.cpp b/launcher/LaunchController.cpp index 5702d95ce..bce6490cc 100644 --- a/launcher/LaunchController.cpp +++ b/launcher/LaunchController.cpp @@ -220,7 +220,10 @@ void LaunchController::login() if (tries > 0 && tries % 3 == 0) { auto result = QMessageBox::question(m_parentWidget, tr("Continue launch?"), - tr("It looks like we couldn't launch after %1 tries. Do you want to continue trying?").arg(tries)); + tr("It looks like we couldn't launch after %1 tries. Usually this can be fixed by logging out and " + "logging back in your Microsoft account. If that doesn't work, Minecraft authentication servers " + "may be having an outage or you may need a VPN in your region. Do you want to continue trying?") + .arg(tries)); if (result == QMessageBox::No) { emitAborted();