mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
fix: improve we couldn't launch after 3 tries message
Signed-off-by: DioEgizio <83089242+DioEgizio@users.noreply.github.com>
This commit is contained in:
parent
2e8256e322
commit
d5da7c9bde
1 changed files with 4 additions and 1 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue