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 (#4805)
This commit is contained in:
commit
1c4d378fc4
1 changed files with 4 additions and 1 deletions
|
|
@ -220,7 +220,10 @@ void LaunchController::login()
|
||||||
if (tries > 0 && tries % 3 == 0) {
|
if (tries > 0 && tries % 3 == 0) {
|
||||||
auto result =
|
auto result =
|
||||||
QMessageBox::question(m_parentWidget, tr("Continue launch?"),
|
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) {
|
if (result == QMessageBox::No) {
|
||||||
emitAborted();
|
emitAborted();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue