From 3f78e0bec397caf3a26b7d79ee84d643806d0fc7 Mon Sep 17 00:00:00 2001 From: woogerboy21 Date: Sun, 9 Aug 2015 12:56:09 -0400 Subject: [PATCH] Update Error 11 Clarity --- cockatrice/src/window_main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cockatrice/src/window_main.cpp b/cockatrice/src/window_main.cpp index 4c979729..9eff2c60 100644 --- a/cockatrice/src/window_main.cpp +++ b/cockatrice/src/window_main.cpp @@ -319,6 +319,9 @@ void MainWindow::loginError(Response::ResponseCode r, QString reasonStr, quint32 case Response::RespClientIdRequired: QMessageBox::critical(this, tr("Error"), tr("This server requires client ID's. Your client is either failing to generate an ID or you are running a modified client.\nPlease close and reopen your client to try again.")); break; + case Response::RespContextError: + QMessageBox::critical(this, tr("Error"), tr("An internal error has occurred, please try closing and reopening your client and try again. If the error persists try updating your client to the most recent build and if need be contact your software provider.")); + break; case Response::RespAccountNotActivated: { bool ok = false; QString token = QInputDialog::getText(this, tr("Account activation"), tr("Your account has not been activated yet.\nYou need to provide the activation token received in the activation email"), QLineEdit::Normal, QString(), &ok);