mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-04-03 08:22:07 +00:00
Fixed the UI team count cvars when someone disconnects.
This commit is contained in:
parent
42a395e686
commit
91514b19cd
2 changed files with 6 additions and 0 deletions
|
@ -31,3 +31,4 @@
|
|||
* Bots dont look for a team leader in TP
|
||||
* Enabled the 6th custom crosshair in the UI
|
||||
* Added callvote map and ref map features.
|
||||
* Fixed the UI team count cvars when someone disconnects.
|
||||
|
|
|
@ -5,6 +5,9 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// $Log$
|
||||
// Revision 1.34 2002/06/23 15:51:59 slicer
|
||||
// Fixed the UI team count cvars when someone disconnects.
|
||||
//
|
||||
// Revision 1.33 2002/06/16 20:06:13 jbravo
|
||||
// Reindented all the source files with "indent -kr -ut -i8 -l120 -lc120 -sob -bad -bap"
|
||||
//
|
||||
|
@ -996,6 +999,8 @@ void CG_NewClientInfo(int clientNum)
|
|||
configstring = CG_ConfigString(clientNum + CS_PLAYERS);
|
||||
if (!configstring[0]) {
|
||||
memset(ci, 0, sizeof(*ci));
|
||||
//Slicer: Recalculate team count cvars
|
||||
CG_UpdateTeamVars();
|
||||
return; // player just left
|
||||
}
|
||||
// build into a temp buffer so the defer checks can use
|
||||
|
|
Loading…
Reference in a new issue