Skip to content

Commit

Permalink
is reconnecting uncommented
Browse files Browse the repository at this point in the history
  • Loading branch information
PrawyCoD1 authored Mar 11, 2021
1 parent 80b71a2 commit b69f3d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sv_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ void SV_DirectConnect( netadr_t from ) {

newcl = &temp;
memset(newcl, 0, sizeof(client_t));

/* Removed method that is recognizing if client did reconnect due to problems with it
for(i = 0, cl = getclient(0); i < sv_maxclients->integer; i++) {
cl = getclient(i);
if(cl->state == CS_FREE)
Expand All @@ -670,7 +670,7 @@ void SV_DirectConnect( netadr_t from ) {
goto gotnewcl;
}
}

*/
int startIndex;

char *password = Info_ValueForKey( userinfo, "password" );
Expand Down

0 comments on commit b69f3d1

Please sign in to comment.