diff --git a/cockatrice/src/tab_game.cpp b/cockatrice/src/tab_game.cpp index 6baac310..82d5c181 100644 --- a/cockatrice/src/tab_game.cpp +++ b/cockatrice/src/tab_game.cpp @@ -1082,6 +1082,10 @@ void TabGame::eventKicked(const Event_Kicked & /*event*/, int /*eventPlayerId*/, { closeGame(); messageLog->logKicked(); + QMessageBox msgBox(this); + msgBox.setText(tr("You have been kicked out of the game.")); + msgBox.setIcon(QMessageBox::Information); + msgBox.exec(); emit userEvent(); }