mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-26 05:41:52 +00:00
Fix q3plug related crash when issuing a 'sv foo' server command.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@6224 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
078514f2d2
commit
1dfa9e88cb
1 changed files with 3 additions and 2 deletions
|
@ -3041,8 +3041,9 @@ static void SV_SetTimer_f(void)
|
|||
static void SV_SendGameCommand_f(void)
|
||||
{
|
||||
#ifdef Q3SERVER
|
||||
if (q3->sv.PrefixedConsoleCommand())
|
||||
return;
|
||||
if (q3)
|
||||
if (q3->sv.PrefixedConsoleCommand())
|
||||
return;
|
||||
#endif
|
||||
|
||||
#ifdef VM_Q1
|
||||
|
|
Loading…
Reference in a new issue