From 2e6efab91318b103d16f50c1bb090e6689c6a88f Mon Sep 17 00:00:00 2001 From: Octol1ttle Date: Wed, 7 Jan 2026 13:27:04 +0500 Subject: [PATCH] fix: skip asking for offline name when using offline account Signed-off-by: Octol1ttle --- launcher/LaunchController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher/LaunchController.cpp b/launcher/LaunchController.cpp index cbea045fc..d33dbc3f1 100644 --- a/launcher/LaunchController.cpp +++ b/launcher/LaunchController.cpp @@ -266,7 +266,7 @@ void LaunchController::login() } /* fallthrough */ case AccountState::Online: { - if (!m_session->wants_online) { + if (!m_session->wants_online && m_accountToUse->accountType() != AccountType::Offline) { // we ask the user for a player name bool ok = false; QString name;