blob: 95914534f5476c59101c9a6771620b0997303723 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
diff --git c/launcher/minecraft/auth/AccountList.cpp w/launcher/minecraft/auth/AccountList.cpp
index d276d4c41..b3c70962d 100644
--- c/launcher/minecraft/auth/AccountList.cpp
+++ w/launcher/minecraft/auth/AccountList.cpp
@@ -577,12 +577,7 @@ void AccountList::setListFilePath(QString path, bool autosave)
bool AccountList::anyAccountIsValid()
{
- for (auto account : m_accounts) {
- if (account->ownsMinecraft()) {
- return true;
- }
- }
- return false;
+ return true;
}
void AccountList::fillQueue()
|