Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
alicealys committed Dec 24, 2023
1 parent 3ef6162 commit 2e83156
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/client/component/party.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1144,11 +1144,6 @@ namespace party
return;
}

if (download_files(target, info, false))
{
return;
}

server_connection_state.motd = info.get("sv_motd");
server_connection_state.max_clients = std::stoi(info.get("sv_maxclients"));
server_connection_state.base_url = info.get("sv_wwwBaseUrl");
Expand All @@ -1161,6 +1156,11 @@ namespace party
server_discord_info.emplace(discord_info);
}

if (download_files(target, info, false))
{
return;
}

connect_to_party(target, mapname, gametype);
});
}
Expand Down

0 comments on commit 2e83156

Please sign in to comment.