mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
So you don't need to use the skins command after changing either enemyskin or teamskin
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@823 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
2d675dd762
commit
e23e1a8e1b
1 changed files with 10 additions and 0 deletions
|
@ -2493,6 +2493,16 @@ static void TP_MsgFilter_f (void)
|
|||
}
|
||||
}
|
||||
|
||||
void TP_CheckVars(void)
|
||||
{
|
||||
if (cl_enemyskin.modified || cl_teamskin.modified)
|
||||
{
|
||||
Skin_FlushPlayers();
|
||||
cl_enemyskin.modified = false;
|
||||
cl_teamskin.modified = false;
|
||||
}
|
||||
}
|
||||
|
||||
void TP_Init (void)
|
||||
{
|
||||
#define TEAMPLAYVARS "Teamplay Variables"
|
||||
|
|
Loading…
Reference in a new issue