Skip to content

Commit

Permalink
Fix setting wrong servertime on mapchange with active clients
Browse files Browse the repository at this point in the history
  • Loading branch information
ensiform committed Jun 20, 2024
1 parent 7b9dfe7 commit a84dcc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codemp/server/sv_init.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ Ghoul2 Insert End
for (i=0 ; i<sv_maxclients->integer ; i++) {
// save when the server started for each client already connected
if (svs.clients[i].state >= CS_CONNECTED) {
svs.clients[i].oldServerTime = svs.time;
svs.clients[i].oldServerTime = sv.time;
}
}

Expand Down

0 comments on commit a84dcc8

Please sign in to comment.