Small fix for csqc servers, and csqc clients with qizmo between.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1416 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
f2e87a78ce
commit
d29bbb747d
1 changed files with 4 additions and 1 deletions
|
@ -2838,7 +2838,10 @@ void Cmd_Observe_f (void)
|
||||||
|
|
||||||
void SV_EnableClientsCSQC(void)
|
void SV_EnableClientsCSQC(void)
|
||||||
{
|
{
|
||||||
host_client->csqcactive = true;
|
if (host_client->fteprotocolextensions & PEXT_CSQC)
|
||||||
|
host_client->csqcactive = true;
|
||||||
|
else
|
||||||
|
Con_DPrintf("CSQC enabled without protocol extensions\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
void SV_MVDList_f (void);
|
void SV_MVDList_f (void);
|
||||||
|
|
Loading…
Reference in a new issue