mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2025-01-05 16:30:51 +00:00
* Fix to bug involving the port value of master server heartbeats (from Thilo
Schulz)
This commit is contained in:
parent
21e0bdd993
commit
131fb9933f
1 changed files with 1 additions and 1 deletions
|
@ -258,7 +258,7 @@ void SV_MasterHeartbeat( void ) {
|
||||||
sv_master[i]->modified = qfalse;
|
sv_master[i]->modified = qfalse;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if ( !strstr( ":", sv_master[i]->string ) ) {
|
if ( !strchr( sv_master[i]->string, ':' ) ) {
|
||||||
adr[i].port = BigShort( PORT_MASTER );
|
adr[i].port = BigShort( PORT_MASTER );
|
||||||
}
|
}
|
||||||
Com_Printf( "%s resolved to %i.%i.%i.%i:%i\n", sv_master[i]->string,
|
Com_Printf( "%s resolved to %i.%i.%i.%i:%i\n", sv_master[i]->string,
|
||||||
|
|
Loading…
Reference in a new issue