diff options
author | LennyMcLennington <28272981+LennyMcLennington@users.noreply.github.com> | 2022-01-17 03:56:27 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-17 03:56:27 +0000 |
commit | 2c2c22ccf8567de0410decdd6ef122170c70103f (patch) | |
tree | d898fa78f0e344121327cdd8325171ef58f71605 /launcher/minecraft/auth/AccountList.cpp | |
parent | 0bc8baf1172d6967cdb2993826e3469ecd9aab66 (diff) | |
parent | 55597b458ced4d7ad8082ab226617ba48e177ee6 (diff) | |
download | PrismLauncher-2c2c22ccf8567de0410decdd6ef122170c70103f.tar.gz PrismLauncher-2c2c22ccf8567de0410decdd6ef122170c70103f.tar.bz2 PrismLauncher-2c2c22ccf8567de0410decdd6ef122170c70103f.zip |
Merge pull request #82 from PolyMC/revert-offline-mode
Revert offline mode support (#81 and #50)
Diffstat (limited to 'launcher/minecraft/auth/AccountList.cpp')
-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 04470e1c..ef8b435d 100644 --- a/launcher/minecraft/auth/AccountList.cpp +++ b/launcher/minecraft/auth/AccountList.cpp @@ -302,7 +302,7 @@ QVariant AccountList::data(const QModelIndex &index, int role) const } case MigrationColumn: { - if(account->isMSA() || account->isOffline()) { + if(account->isMSA()) { return tr("N/A", "Can Migrate?"); } if (account->canMigrate()) { |