mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Only auto update empty Team Arena internet server cache
Previously tested a mod cvar which may be wrong when multiple mods are involved or config is reset. Let's check the server cache's internet server count directly.
This commit is contained in:
parent
66fec1b059
commit
5592342b1b
1 changed files with 3 additions and 4 deletions
|
@ -5982,11 +5982,10 @@ static void UI_StartServerRefresh(qboolean full, qboolean force)
|
|||
|
||||
// This function is called with force=qfalse when server browser menu opens or net source changes.
|
||||
// Automatically update local and favorite servers.
|
||||
// Only update master server list the first time because the server info cache will be available after that.
|
||||
// Only auto update master server list if there is no server info cache.
|
||||
if ( !force && ( ui_netSource.integer >= UIAS_GLOBAL1 && ui_netSource.integer <= UIAS_GLOBAL5 ) ) {
|
||||
char *value = UI_Cvar_VariableString( va( "ui_lastServerRefresh_%i", ui_netSource.integer ) );
|
||||
if ( value[0] != 0 ) {
|
||||
return; // should have cached list
|
||||
if ( trap_LAN_GetServerCount( UI_SourceForLAN() ) > 0 ) {
|
||||
return; // have cached list
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue