diff options
author | Gingeh <39150378+Gingeh@users.noreply.github.com> | 2022-06-30 22:17:15 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-30 22:17:15 +1000 |
commit | b5d2570fe2a5d2a4ce49524a4a022a517f27f428 (patch) | |
tree | 71eaa8beca7be4270ada7f70f15901bdc8dae482 | |
parent | bef79df6bba3c04737529e2631a88d27d6b37471 (diff) | |
download | PrismLauncher-b5d2570fe2a5d2a4ce49524a4a022a517f27f428.tar.gz PrismLauncher-b5d2570fe2a5d2a4ce49524a4a022a517f27f428.tar.bz2 PrismLauncher-b5d2570fe2a5d2a4ce49524a4a022a517f27f428.zip |
Change Online status to Ready
-rw-r--r-- | launcher/minecraft/auth/AccountList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/minecraft/auth/AccountList.cpp b/launcher/minecraft/auth/AccountList.cpp index 526cdced..2b851e18 100644 --- a/launcher/minecraft/auth/AccountList.cpp +++ b/launcher/minecraft/auth/AccountList.cpp @@ -304,7 +304,7 @@ QVariant AccountList::data(const QModelIndex &index, int role) const return tr("Offline", "Account status"); } case AccountState::Online: { - return tr("Online", "Account status"); + return tr("Ready", "Account status"); } case AccountState::Working: { return tr("Working", "Account status"); |