diff --git a/cockatrice/src/userinfobox.cpp b/cockatrice/src/userinfobox.cpp index 255442a7..68c09eda 100644 --- a/cockatrice/src/userinfobox.cpp +++ b/cockatrice/src/userinfobox.cpp @@ -110,6 +110,11 @@ void UserInfoBox::updateInfo(const ServerInfo_User &user) userLevelText = tr("Registered user"); else userLevelText = tr("Unregistered user"); + + if (user.has_privlevel() && user.privlevel() != "NONE") { + userLevelText += " | " + tr("%1").arg(user.privlevel().c_str()); + } + userLevelLabel3.setText(userLevelText); QString accountAgeString = tr("Unregistered user");