handle joinable quests

This commit is contained in:
Martin Michelsen
2023-06-19 18:29:54 -07:00
parent 6468af6eb7
commit 26dc50930b
3 changed files with 55 additions and 36 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ bool Lobby::any_client_loading() const {
if (!this->clients[x].get()) {
continue;
}
if (this->clients[x]->flags & (Client::Flag::LOADING | Client::Flag::LOADING_QUEST)) {
if (this->clients[x]->flags & (Client::Flag::LOADING | Client::Flag::LOADING_QUEST | Client::Flag::LOADING_RUNNING_QUEST)) {
return true;
}
}