mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 23:02:01 +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;
|
||||
continue;
|
||||
}
|
||||
if ( !strstr( ":", sv_master[i]->string ) ) {
|
||||
if ( !strchr( sv_master[i]->string, ':' ) ) {
|
||||
adr[i].port = BigShort( PORT_MASTER );
|
||||
}
|
||||
Com_Printf( "%s resolved to %i.%i.%i.%i:%i\n", sv_master[i]->string,
|
||||
|
|
Loading…
Reference in a new issue