Skip to content

Commit

Permalink
server: fix ack condition
Browse files Browse the repository at this point in the history
  • Loading branch information
ec- committed Aug 28, 2024
1 parent e4d7d3a commit 959876a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/server/sv_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -1298,7 +1298,7 @@ static void SV_BeginDownload_f( client_t *cl ) {

cl->downloading = qtrue;

if ( cl->gamestateAck = GSA_ACKED ) {
if ( cl->gamestateAck == GSA_ACKED ) {
cl->gamestateAck = GSA_SENT_ONCE;
}
}
Expand Down

0 comments on commit 959876a

Please sign in to comment.